Skip to content

Commit 85ad43c

Browse files
authored
Merge pull request #140 from asmacdo/test-fix-shellcheck
fix shellcheck
2 parents 1aae732 + 06ffc73 commit 85ad43c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/check_images--help

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
#
44
# Inspired by https://github.com/ReproNim/containers/issues/137#issuecomment-2877505303
55
#
6-
git annex find --in here | grep '\.si*' | while read f; do
6+
git annex find --in here | grep '\.si*' | while read -r f; do
77
{ singularity run "$f" --help 2>&1 && echo "$f: ok" || echo "$f: failed to execute --help" >&2; } | grep -q "no runscript" && echo "$f: no runscript" >&2;
88
done

0 commit comments

Comments
 (0)