-
Notifications
You must be signed in to change notification settings - Fork 1.8k
SC1061
Joachim Ansorg edited this page Nov 12, 2021
·
2 revisions
yes() {
while echo "y"
do
true
}
yes() {
while echo "y"
do
true
done
}
ShellCheck found a do
without a corresponding done
.
Double check that the done
exists, and that it correctly matches the indicated do
. A companion warning SC1062 is emitted where ShellCheck first noticed it was missing.
None.