We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1aae732 + 06ffc73 commit 85ad43cCopy full SHA for 85ad43c
scripts/check_images--help
@@ -3,6 +3,6 @@
3
#
4
# Inspired by https://github.com/ReproNim/containers/issues/137#issuecomment-2877505303
5
6
-git annex find --in here | grep '\.si*' | while read f; do
+git annex find --in here | grep '\.si*' | while read -r f; do
7
{ 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;
8
done
0 commit comments