- 
                Notifications
    
You must be signed in to change notification settings  - Fork 1.9k
 
SC1130
        Vidar Holen edited this page Feb 18, 2018 
        ·
        1 revision
      
    until make
do:; doneuntil make
do :; doneShellCheck found a keyword immediately followed by a :. : 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.
None