wallabag/install.sh
Jeremy Benoist 04d5c60216
Update install.sh
Since $ASSETS can be empty now and only be “build”.
2016-09-11 12:52:42 +02:00

18 lines
620 B
Bash
Executable file

#! /usr/bin/env bash
if [[ $ASSETS == 'build' ]]; then
echo "Installing PHP dependencies through Composer..."
composer install --no-interaction --no-progress --prefer-dist -o
chmod ugo+x vendor/mouf/nodejs-installer/bin/local/npm
echo "Downloading javascript librairies through npm..."
vendor/mouf/nodejs-installer/bin/local/npm install
echo "Downloading fonts librairies through bower..."
node_modules/bower/bin/bower install
echo "Concat, minify and installing assets..."
node_modules/grunt/bin/grunt
else
composer install --no-interaction --no-progress --prefer-dist -o
fi