aboutsummaryrefslogtreecommitdiffhomepage
path: root/install_dev.sh
diff options
context:
space:
mode:
authorThomas Citharel <tcit@tcit.fr>2016-10-03 15:33:08 +0200
committerGitHub <noreply@github.com>2016-10-03 15:33:08 +0200
commit24add95e9eaa1211655aff6d3d06c30e94252bcc (patch)
tree59fde27b0ec839434b725a276743027672efefd1 /install_dev.sh
parent9d3603147b0a4219a8065861351439cbe5e52772 (diff)
parent88d8125a5fa3b5c6c91cb22fc2bef1243d7391fc (diff)
downloadwallabag-24add95e9eaa1211655aff6d3d06c30e94252bcc.tar.gz
wallabag-24add95e9eaa1211655aff6d3d06c30e94252bcc.tar.zst
wallabag-24add95e9eaa1211655aff6d3d06c30e94252bcc.zip
Merge pull request #2338 from wallabag/install-2.1
Fix for 2.1 installation
Diffstat (limited to 'install_dev.sh')
-rwxr-xr-xinstall_dev.sh17
1 files changed, 9 insertions, 8 deletions
diff --git a/install_dev.sh b/install_dev.sh
index 61a4f6fd..cbd47495 100755
--- a/install_dev.sh
+++ b/install_dev.sh
@@ -1,13 +1,14 @@
1#! /usr/bin/env bash 1#! /usr/bin/env bash
2 2
3echo "Installing PHP dependencies (including dev) through Composer..." 3echo " > Installing PHP dependencies (including dev) through Composer..."
4composer install 4composer install -o --no-interaction --no-progress --prefer-dist
5 5
6echo "Downloading librairies through npm..." 6if [[ $ASSETS == 'build' || $TRAVIS_BUILD_DIR == '' ]]; then
7npm install 7 echo " > Downloading librairies through npm..."
8 npm install
8 9
9echo "Concat, minify and installing assets..." 10 echo " > Concat, minify and installing assets..."
10grunt 11 grunt
12fi
11 13
12echo "Installing wallabag..." 14echo " > Install finished"
13php bin/console wallabag:install