-
Notifications
You must be signed in to change notification settings - Fork 1.8k
SC1020
John Gardner edited this page Dec 22, 2021
·
4 revisions
if [ "$STUFF" = ""]; then
if [ "$STUFF" = "" ]; then
Bourne shells are very whitespace sensitive. Adding or removing spaces can drastically alter the meaning of a script. In these cases, ShellCheck has noticed that you're missing a space at the position indicated.
None.
# shellcheck disable=SC1020
if [ "$STUFF" = ""]; then