mirror of
https://github.com/wallabag/wallabag.git
synced 2025-09-15 18:57:05 +00:00
15 lines
474 B
Bash
Executable file
15 lines
474 B
Bash
Executable file
#! /usr/bin/env bash
|
|
|
|
if [[ $ASSETS == 'build' ]]; then
|
|
echo "Installing PHP dependencies through Composer..."
|
|
composer update --no-interaction --no-progress
|
|
|
|
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 update --no-interaction --no-progress
|
|
fi
|