aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/dev.sh
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-10-31 09:56:07 +0100
committerGitHub <noreply@github.com>2016-10-31 09:56:07 +0100
commite52ee565f7df9566d53577cd127088141641619c (patch)
treeae0182eb3ce321f6f201df927e198f09bd07193a /scripts/dev.sh
parent7d9abd1ab5425626ce3b0b241f2f50879e109375 (diff)
parent99692e8c3322f31fa19b010ce488f88c5f3ce43a (diff)
downloadwallabag-e52ee565f7df9566d53577cd127088141641619c.tar.gz
wallabag-e52ee565f7df9566d53577cd127088141641619c.tar.zst
wallabag-e52ee565f7df9566d53577cd127088141641619c.zip
Merge pull request #2521 from foxmask/master
fix path for the install scripts
Diffstat (limited to 'scripts/dev.sh')
-rw-r--r--scripts/dev.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/dev.sh b/scripts/dev.sh
index fa3b2d5d..0703ced1 100644
--- a/scripts/dev.sh
+++ b/scripts/dev.sh
@@ -1,11 +1,11 @@
1#! /usr/bin/env bash 1#!/usr/bin/env bash
2# You can execute this file to install wallabag dev environment 2# You can execute this file to install wallabag dev environment
3# eg: `sh dev.sh` 3# eg: `sh dev.sh`
4 4
5COMPOSER_COMMAND='composer' 5COMPOSER_COMMAND='composer'
6 6
7DIR="${BASH_SOURCE%/*}" 7DIR="${BASH_SOURCE}"
8if [[ ! -d "$DIR" ]]; then DIR="$PWD"; fi 8if [ ! -d "$DIR" ]; then DIR="$PWD/scripts"; fi
9. "$DIR/require.sh" 9. "$DIR/require.sh"
10 10
11$COMPOSER_COMMAND install 11$COMPOSER_COMMAND install