tests: Update bash script to call bash

* Call bash to avoid issue where user didn't `chmod +x` the script.
* Error without chmod:

        exec: "run.sh": executable file not found in $PATH
This commit is contained in:
Kyle Manna 2015-04-22 10:13:15 -07:00
parent 60f35c2793
commit 17bc9d864f
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ if [ "$1" = "docker" ]; then
make -j $cpus
else
aosp_url="https://raw.githubusercontent.com/kylemanna/docker-aosp/master/utils/aosp"
args="run.sh docker"
args="bash run.sh docker"
export AOSP_EXTRA_ARGS="-v $(cd $(dirname $0) && pwd -P)/$(basename $0):/usr/local/bin/run.sh:ro"
export AOSP_IMAGE="kylemanna/aosp:4.4-kitkat"