diff options
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" | ||