aboutsummaryrefslogtreecommitdiffhomepage
path: root/install.sh
diff options
context:
space:
mode:
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/install.sh b/install.sh
index 29b343b2..6bf0263b 100755
--- a/install.sh
+++ b/install.sh
@@ -2,7 +2,7 @@
2 2
3if [[ $ASSETS == 'build' ]]; then 3if [[ $ASSETS == 'build' ]]; then
4 echo "Installing PHP dependencies through Composer..." 4 echo "Installing PHP dependencies through Composer..."
5 composer install --no-interaction --no-progress --prefer-dist -o 5 composer update --no-interaction --no-progress
6 6
7 chmod ugo+x vendor/mouf/nodejs-installer/bin/local/npm 7 chmod ugo+x vendor/mouf/nodejs-installer/bin/local/npm
8 echo "Downloading librairies through npm..." 8 echo "Downloading librairies through npm..."
@@ -11,5 +11,5 @@ if [[ $ASSETS == 'build' ]]; then
11 echo "Concat, minify and installing assets..." 11 echo "Concat, minify and installing assets..."
12 node_modules/grunt/bin/grunt 12 node_modules/grunt/bin/grunt
13else 13else
14 composer install --no-interaction --no-progress --prefer-dist -o 14 composer update --no-interaction --no-progress
15fi 15fi