]> git.immae.eu Git - github/wallabag/wallabag.git/blame - install_dev.sh
Use install_dev.sh for Travis
[github/wallabag/wallabag.git] / install_dev.sh
CommitLineData
5ecdfcd0
TC
1#! /usr/bin/env bash
2
4ac780eb
JB
3echo " > Installing PHP dependencies (including dev) through Composer..."
4composer install -o --no-interaction --no-progress --prefer-dist
5ecdfcd0 5
4ac780eb
JB
6if [[ $ASSETS == 'build' || $TRAVIS_BUILD_DIR == '' ]]; then
7 echo " > Downloading librairies through npm..."
8 npm install
5ecdfcd0 9
4ac780eb
JB
10 echo " > Concat, minify and installing assets..."
11 grunt
12fi
5ecdfcd0 13
4ac780eb 14echo " > Install finished"