aboutsummaryrefslogtreecommitdiffhomepage
path: root/install_dev.sh
diff options
context:
space:
mode:
authorThomas Citharel <tcit@tcit.fr>2016-10-04 16:26:50 +0200
committerGitHub <noreply@github.com>2016-10-04 16:26:50 +0200
commit57386125abc5c50c1438cf7e78d01f06021adc0a (patch)
treed3f26102f9697247c93ac69db6000d15e96fbb23 /install_dev.sh
parentf2ab290f0fc8a2909bb490e0ed2d91a677a95cc4 (diff)
parentc10adc1f762d004350a7921250c6821baa866e2d (diff)
downloadwallabag-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-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"