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 20:11:10 +0300
committersplitt3r <splitt3r@users.noreply.github.com>2017-10-22 20:11:10 +0300
commit671a34e26ddfc13205e3f2688532ad3ed187f2d7 (patch)
treeaae2c8837d4b7fded0e41afbd90d846fa1a62675 /.travis.yml
parentaa3a0a12928e4962248836297ecca06a0475e124 (diff)
Updated syntax
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 d920bedd..8dc5d7ca 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -31,11 +31,11 @@ cache:
before_install:
# Install NC / oC and app
- - 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
+ - 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
- - if [ '$CLOUD' = 'nextcloud' ]; then cd ../server; fi
- - if [ '$CLOUD' = 'owncloud' ]; then cd ../core; fi
+ - if [ $CLOUD = 'nextcloud' ]; then cd ../server; fi
+ - if [ $CLOUD = 'owncloud' ]; then cd ../core; fi
- ./occ app:enable $APP_NAME
before_script: