-
Notifications
You must be signed in to change notification settings - Fork 1.8k
SC1058
Vidar Holen edited this page Oct 11, 2018
·
1 revision
for file in *
echo "$file"
done
for file in *
do
echo "$file"
done
ShellCheck has found a loop that appears to be missing a do
statement. In the problematic code, it was simply forgotten.
Verify that the do
exists, and that it's in the correct place.
None