We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7cfcf6d commit ae199edCopy full SHA for ae199ed
1 file changed
test/distrotest
@@ -25,6 +25,13 @@ exit 0
25
echo "Deleting 'dist' and 'dist-newstyle'..."
26
rm -rf dist dist-newstyle
27
28
+execs=$(find . -name shellcheck)
29
+
30
+if [ -n "$execs" ]
31
+then
32
+ die "Found unexpected executables. Remove and try again: $execs"
33
+fi
34
35
log=$(mktemp) || die "Can't create temp file"
36
date >> "$log" || die "Can't write to log"
37
0 commit comments