aboutsummaryrefslogtreecommitdiffhomepage
path: root/install.sh
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2016-10-03 14:33:05 +0200
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-10-03 14:35:42 +0200
commit4ac780eb21f1cceeca34e698e6865d49ec7d3ee8 (patch)
treead8b7da6eff922d5842de99f79fb3532c9b72be6 /install.sh
parent8fdb5e5766a6bf5970f268200a6c21fd39693637 (diff)
downloadwallabag-4ac780eb21f1cceeca34e698e6865d49ec7d3ee8.tar.gz
wallabag-4ac780eb21f1cceeca34e698e6865d49ec7d3ee8.tar.zst
wallabag-4ac780eb21f1cceeca34e698e6865d49ec7d3ee8.zip
Use install_dev.sh for Travis
Add `--no-dev` to `composer install` for prod env
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh24
1 files changed, 11 insertions, 13 deletions
diff --git a/install.sh b/install.sh
index 29b343b2..87d53bf0 100755
--- a/install.sh
+++ b/install.sh
@@ -1,15 +1,13 @@
1#! /usr/bin/env bash 1#! /usr/bin/env bash
2 2
3if [[ $ASSETS == 'build' ]]; then 3echo " > Installing PHP dependencies through Composer..."
4 echo "Installing PHP dependencies through Composer..." 4composer install --no-interaction --no-progress --prefer-dist -o --no-dev
5 composer install --no-interaction --no-progress --prefer-dist -o 5
6 6chmod ugo+x vendor/mouf/nodejs-installer/bin/local/npm
7 chmod ugo+x vendor/mouf/nodejs-installer/bin/local/npm 7echo " > Downloading librairies through npm..."
8 echo "Downloading librairies through npm..." 8vendor/mouf/nodejs-installer/bin/local/npm install
9 vendor/mouf/nodejs-installer/bin/local/npm install 9
10 10echo " > Concat, minify and installing assets..."
11 echo "Concat, minify and installing assets..." 11node_modules/grunt/bin/grunt
12 node_modules/grunt/bin/grunt 12
13else 13echo " > Install finished"
14 composer install --no-interaction --no-progress --prefer-dist -o
15fi