wallabag/install.sh
Thomas Citharel b4118f66ff
remove bower
2016-09-29 09:20:37 +02:00

15 lines
510 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 librairies through npm..."
vendor/mouf/nodejs-installer/bin/local/npm install
echo "Concat, minify and installing assets..."
node_modules/grunt/bin/grunt
else
composer install --no-interaction --no-progress --prefer-dist -o
fi