QuackatronHQ / Gigarepo

Whitespace found after = SH-1007
Bug risk
Critical
2 occurrences in this check
Remove space after = if trying to assign a value (for empty string, use var='' ... )
 4# I want programs to show text in dutch!
 5LANGUAGE= nl
 6# I want to run the nl command with English error messages!
 7LANGUAGE= nl 8
 9# SH-1010
10for f in *; do echo "$f" done
Remove space after = if trying to assign a value (for empty string, use var='' ... )
 2
 3# SH-1007
 4# I want programs to show text in dutch!
 5LANGUAGE= nl 6# I want to run the nl command with English error messages!
 7LANGUAGE= nl
 8