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.
This commit is contained in:
Julian Dax
2019-09-19 07:39:27 +02:00
committed by Antonio Davi Macedo Coelho de Castro
parent da4871af88
commit 431cb94ae3

View File

@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
RED='\033[0;31m'
GREEN='\033[0;32m'
NC='\033[0m'