aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/dev.sh
diff options
context:
space:
mode:
authorJérémy Benoist <j0k3r@users.noreply.github.com>2019-03-18 09:25:00 +0100
committerGitHub <noreply@github.com>2019-03-18 09:25:00 +0100
commit893f107fa1451050b478838c84dc85eb295c94b7 (patch)
tree137c5ea1f4b4291774804541cc01c38a54ed2617 /scripts/dev.sh
parenta48ff25d4c9f99dfb8ec1a9a1ae296417af6d9c9 (diff)
parent7c553a6017c64d98017a6010dc6e77d22ab72da4 (diff)
downloadwallabag-893f107fa1451050b478838c84dc85eb295c94b7.tar.gz
wallabag-893f107fa1451050b478838c84dc85eb295c94b7.tar.zst
wallabag-893f107fa1451050b478838c84dc85eb295c94b7.zip
Merge pull request #3860 from baurmatt/fix/posix_compatibility
Make dev/install/update script posix compatible
Diffstat (limited to 'scripts/dev.sh')
-rwxr-xr-xscripts/dev.sh10
1 files changed, 7 insertions, 3 deletions
diff --git a/scripts/dev.sh b/scripts/dev.sh
index 0703ced1..28453be0 100755
--- a/scripts/dev.sh
+++ b/scripts/dev.sh
@@ -3,10 +3,14 @@
3# eg: `sh dev.sh` 3# eg: `sh dev.sh`
4 4
5COMPOSER_COMMAND='composer' 5COMPOSER_COMMAND='composer'
6REQUIRE_FILE='scripts/require.sh'
6 7
7DIR="${BASH_SOURCE}" 8if [ ! -f "$REQUIRE_FILE" ]; then
8if [ ! -d "$DIR" ]; then DIR="$PWD/scripts"; fi 9 echo "Cannot find $REQUIRE_FILE"
9. "$DIR/require.sh" 10 exit 1
11fi
12
13. "$REQUIRE_FILE"
10 14
11$COMPOSER_COMMAND install 15$COMPOSER_COMMAND install
12php bin/console wallabag:install 16php bin/console wallabag:install