From 431cb94ae3a41c950f3dbf13163804c369c9ed91 Mon Sep 17 00:00:00 2001 From: Julian Dax Date: Thu, 19 Sep 2019 07:39:27 +0200 Subject: [PATCH] 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. --- bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index 3f8b3db6..9446016d 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash RED='\033[0;31m' GREEN='\033[0;32m' NC='\033[0m'