From 93f51eb6ce266470bd1f619b6c814a357d7660b4 Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Fri, 27 Jul 2018 19:34:01 +0200 Subject: [PATCH] force running scripts in bash, as it's not the default shell on Ubuntu (which is what Travis runs) --- .travis-test-riot.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis-test-riot.sh b/.travis-test-riot.sh index ff1666bfc0..cfbb5bafc8 100755 --- a/.travis-test-riot.sh +++ b/.travis-test-riot.sh @@ -31,7 +31,7 @@ popd git clone https://github.com/matrix-org/matrix-react-end-to-end-tests.git --branch bwindels/ci_script pushd matrix-react-end-to-end-tests ln -s $REACT_SDK_DIR/$RIOT_WEB_DIR riot/riot-web -PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true sh ./install.sh +PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true ./install.sh -CHROME_PATH=$(which google-chrome-stable) sh ./run.sh +CHROME_PATH=$(which google-chrome-stable) ./run.sh popd