Use /bin/bash instead of /bin/sh in scripts

`/bin/sh` isn't always an alias of `/bin/bash`, so bash-specific syntax broke the scripts.
(like 777a9ae6e4/scripts/_get-test-directories.sh (L7))
This commit is contained in:
Nicolò Ribaudo 2017-09-08 01:46:25 +02:00 committed by Logan Smyth
parent 777a9ae6e4
commit 4e7961dcf8
4 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
set -e
TEST_DIRS=""

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
set -e
read -p "Username: " username

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
set -e
testDirs=`TEST_TYPE=cov scripts/_get-test-directories.sh`

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
set -e
if [ -z "$TEST_GREP" ]; then