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.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.sh')
-rwxr-xr-x | install.sh | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/install.sh b/install.sh deleted file mode 100755 index fad8b4c0..00000000 --- a/install.sh +++ /dev/null | |||
@@ -1,13 +0,0 @@ | |||
1 | #! /usr/bin/env bash | ||
2 | |||
3 | echo " > Installing PHP dependencies through Composer..." | ||
4 | SYMFONY_ENV=prod composer install --no-interaction --no-progress --prefer-dist -o --no-dev | ||
5 | |||
6 | chmod ugo+x vendor/mouf/nodejs-installer/bin/local/npm | ||
7 | echo " > Downloading librairies through npm..." | ||
8 | vendor/mouf/nodejs-installer/bin/local/npm install | ||
9 | |||
10 | echo " > Concat, minify and installing assets..." | ||
11 | node_modules/grunt/bin/grunt | ||
12 | |||
13 | echo " > Install finished" | ||