aboutsummaryrefslogtreecommitdiffhomepage
path: root/install_dev.sh
diff options
context:
space:
mode:
Diffstat (limited to 'install_dev.sh')
-rwxr-xr-xinstall_dev.sh14
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
3echo " > Installing PHP dependencies (including dev) through Composer..."
4composer install -o --no-interaction --no-progress --prefer-dist
5
6if [[ $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
12fi
13
14echo " > Install finished"