Skip to content
This repository was archived by the owner on Oct 18, 2023. It is now read-only.

Commit 7b70f5a

Browse files
author
Simon Hofmann
committed
Fixed build script
1 parent 68902a6 commit 7b70f5a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.travis.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,16 +42,16 @@ install: travis_wait 30 docker pull justadudewhohacks/opencv4nodejs-ci:$TAG
4242

4343
script:
4444
- if [[ $BUILD_TASK != "prebuild" ]]; then
45-
cd ./ci/$BUILD_TASK
46-
npm run $BUILD_TASK $TAG
47-
cd -
45+
cd ./ci/$BUILD_TASK;
46+
npm run $BUILD_TASK $TAG;
47+
cd -;
4848
fi
4949

5050
after_success:
5151
- if [[ $TRAVIS_TAG != "" && $BUILD_TASK == "prebuild" ]]; then
52-
cd ./ci/$BUILD_TASK
53-
npm run $BUILD_TASK $TAG
54-
cd -
52+
cd ./ci/$BUILD_TASK;
53+
npm run $BUILD_TASK $TAG;
54+
cd -;
5555
fi
5656
- if [ $BUILD_TASK = 'cover' ]; then
5757
npm install;

0 commit comments

Comments
 (0)