Skip to content

Commit 431cb94

Browse files
brododavimacedo
authored andcommitted
Use #!/bin/bash instead of #!/bin/sh (#6062)
The script uses double square brackets, which are a non-standard extension to `[]`. Some shells (e.g. dash, the default shell under Debian) do not support double square brackets. The shebang line should reflect that.
1 parent da4871a commit 431cb94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bootstrap.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh
1+
#!/bin/bash
22
RED='\033[0;31m'
33
GREEN='\033[0;32m'
44
NC='\033[0m'

0 commit comments

Comments
 (0)