Skip to content

Commit 06ffc73

Browse files
committed
fix shellcheck
currently blocking the tests from running In ./scripts/check_images--help line 6: git annex find --in here | grep '\.si*' | while read f; do ^--^ SC2162 (info): read without -r will mangle backslashes.
1 parent 1aae732 commit 06ffc73

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)