Skip to content
This repository was archived by the owner on Mar 13, 2024. It is now read-only.

Commit fc951c0

Browse files
committed
fix "Fixup blank lockfiles"
1 parent d0a8b23 commit fc951c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ jobs:
173173

174174
- name: Fixup blank lockfiles
175175
# Github release artifacts can't be blank
176-
run: for f in lockfiles/*; [ -s $f ] || echo '# No requirements' >> $f; done
176+
run: for f in lockfiles/*; do [ -s $f ] || echo '# No requirements' >> $f; done
177177

178178
- name: Github Release
179179
# We pin to the SHA, not the tag, for security reasons.

0 commit comments

Comments
 (0)