Skip to content

Commit 36487fe

Browse files
Fix error message for lockfile verification
Correct error message formatting in release workflow
1 parent 8a362e7 commit 36487fe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
- name: Verify single lockfile (Step 0 - Supply Chain Policy)
7878
run: |
7979
if [ -f yarn.lock ] && [ -f package-lock.json ]; then
80-
"❌ ERROR: Both yarn.lock and package-lock.json found. Policy requires exactly ONE package manager. Allowed: npm + package-lock.json OR Yarn + yarn.lock"
80+
echo "❌ ERROR: Both yarn.lock and package-lock.json found. Policy requires exactly ONE package manager. Allowed: npm + package-lock.json OR Yarn + yarn.lock"
8181
exit 1
8282
fi
8383
if [ ! -f yarn.lock ] && [ ! -f package-lock.json ]; then

0 commit comments

Comments
 (0)