You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bourne shells are very whitespace sensitive. Adding or removing spaces can drastically alter the meaning of a script. In these cases, you're missing a space at the position indicated.
Description
Bourne shells are very whitespace sensitive. Adding or removing spaces can drastically alter the meaning of a script. In these cases, you're missing a space at the position indicated.
Problematic code:
if [ "$STUFF" = ""]; then
Correct code:
if [ "$STUFF" = "" ]; then
Fix:
You need a space before the ] here:
https://github.com/chainlink/blob/develop/core/scripts/install-protoc.sh#L27-L27
The text was updated successfully, but these errors were encountered: