From ec0b7bea5d839e3162a0990bb45fffd2a797a788 Mon Sep 17 00:00:00 2001 From: Norbert Melzer Date: Mon, 18 Apr 2016 01:24:36 +0200 Subject: [PATCH] Add shebang to `bin/build.sh` Without the shebang, the buildscript might fail on environments which do not use `bash` or a compatible shell as default. This PR fixes the issue and makes the script more robust to the environment. --- bin/build.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/build.sh b/bin/build.sh index 3de70ae..25208f8 100755 --- a/bin/build.sh +++ b/bin/build.sh @@ -1,3 +1,5 @@ +#!/usr/bin/env bash + declare -i TEST_RESULT=0 FAILED_EXERCISES=''