From c953effb7cf7f518c61e2fc9b5696325064b7450 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Sat, 18 May 2019 15:22:40 +0200 Subject: [PATCH] Build ASF-ui in subshell --- .travis.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 257b345dc..8e0f5c2f0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -38,10 +38,11 @@ script: set +eu # This is needed to run below npm block on OSX fi - cd ASF-ui - npm ci - npm run-script deploy - cd .. + ( + cd ASF-ui + npm ci + npm run-script deploy + ) if [ "$TRAVIS_OS_NAME" = "osx" ]; then set -eu # We no longer need +eu on OSX