Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsplitt3r <splitt3r@users.noreply.github.com>2017-10-22 19:58:37 +0300
committersplitt3r <splitt3r@users.noreply.github.com>2017-10-22 19:58:37 +0300
commitaa3a0a12928e4962248836297ecca06a0475e124 (patch)
tree8a73f0d0de26b9df67131730f49fff9aa06349b0 /.travis.yml
parentaf5dea2b459c08105544bb135eede4e7b2038df2 (diff)
Fixed Tavis CI script
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index ade12d41..d920bedd 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -31,11 +31,11 @@ cache:
before_install:
# Install NC / oC and app
- - sh -c "if [ '$CLOUD' = 'nextcloud' ]; wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh; fi;"
- - sh -c "if [ '$CLOUD' = 'owncloud' ]; wget https://raw.githubusercontent.com/owncloud/administration/master/travis-ci/before_install.sh; fi;"
+ - if [ '$CLOUD' = 'nextcloud' ]; then wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh; fi
+ - if [ '$CLOUD' = 'owncloud' ]; then wget https://raw.githubusercontent.com/owncloud/administration/master/travis-ci/before_install.sh; fi
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB
- - sh -c "if [ '$CLOUD' = 'nextcloud' ]; cd ../server; fi;"
- - sh -c "if [ '$CLOUD' = 'owncloud' ]; cd ../core; fi;"
+ - if [ '$CLOUD' = 'nextcloud' ]; then cd ../server; fi
+ - if [ '$CLOUD' = 'owncloud' ]; then cd ../core; fi
- ./occ app:enable $APP_NAME
before_script: