Skip to content

Commit

Permalink
Use #!/bin/bash instead of #!/bin/sh (parse-community#6062)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
brodo authored and davimacedo committed Sep 19, 2019
1 parent d301ac0 commit 6aed8b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bootstrap.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
RED='\033[0;31m'
GREEN='\033[0;32m'
NC='\033[0m'
Expand Down

0 comments on commit 6aed8b6

Please sign in to comment.