Pattern: Missing space before :
Issue: -
:
is a synonym for true
, the command that "does nothing, successfully", and as a command name it needs a space.
do:
is as invalid as dotrue
. Use do :
, or preferably, do true
for readability.
Example of incorrect code:
until make
do:; done
Example of correct code:
until make
do :; done