diff options
author | Thomas Citharel <tcit@tcit.fr> | 2016-10-04 16:26:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-04 16:26:50 +0200 |
commit | 57386125abc5c50c1438cf7e78d01f06021adc0a (patch) | |
tree | d3f26102f9697247c93ac69db6000d15e96fbb23 /install_dev.sh | |
parent | f2ab290f0fc8a2909bb490e0ed2d91a677a95cc4 (diff) | |
parent | c10adc1f762d004350a7921250c6821baa866e2d (diff) | |
download | wallabag-57386125abc5c50c1438cf7e78d01f06021adc0a.tar.gz wallabag-57386125abc5c50c1438cf7e78d01f06021adc0a.tar.zst wallabag-57386125abc5c50c1438cf7e78d01f06021adc0a.zip |
Merge pull request #2353 from wallabag/assets-fix
Basically, fix everything
Diffstat (limited to 'install_dev.sh')
-rwxr-xr-x | install_dev.sh | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/install_dev.sh b/install_dev.sh deleted file mode 100755 index cbd47495..00000000 --- a/install_dev.sh +++ /dev/null | |||
@@ -1,14 +0,0 @@ | |||
1 | #! /usr/bin/env bash | ||
2 | |||
3 | echo " > Installing PHP dependencies (including dev) through Composer..." | ||
4 | composer install -o --no-interaction --no-progress --prefer-dist | ||
5 | |||
6 | if [[ $ASSETS == 'build' || $TRAVIS_BUILD_DIR == '' ]]; then | ||
7 | echo " > Downloading librairies through npm..." | ||
8 | npm install | ||
9 | |||
10 | echo " > Concat, minify and installing assets..." | ||
11 | grunt | ||
12 | fi | ||
13 | |||
14 | echo " > Install finished" | ||