From f2cb2e7428974cff60618bfacae7c20efe3296b1 Mon Sep 17 00:00:00 2001 From: Kyle Manna Date: Wed, 22 Apr 2015 10:13:15 -0700 Subject: [PATCH] tests: Update script to call bash for lollipop * 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 --- tests/build-lollipop.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/build-lollipop.sh b/tests/build-lollipop.sh index bce1eae..aba9335 100755 --- a/tests/build-lollipop.sh +++ b/tests/build-lollipop.sh @@ -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:5.0-lollipop"