aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJérémy Benoist <j0k3r@users.noreply.github.com>2019-11-19 14:24:35 +0100
committerGitHub <noreply@github.com>2019-11-19 14:24:35 +0100
commit8668796106b856ca041512af27268ce6e49d2caf (patch)
treec712b11c70a72572870fafbf2ef8b55aa7bc4817
parenta9753ef99018a0b92e6af1f9a6e98fa3c7e92792 (diff)
parent488e3d7a915dcdce37fe4af14f33293edcb4fbdb (diff)
downloadwallabag-8668796106b856ca041512af27268ce6e49d2caf.tar.gz
wallabag-8668796106b856ca041512af27268ce6e49d2caf.tar.zst
wallabag-8668796106b856ca041512af27268ce6e49d2caf.zip
Merge pull request #4152 from ldidry/add-env-var-dev.sh
Add environment variables to control scripts/dev.sh behavior
-rwxr-xr-xscripts/dev.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/scripts/dev.sh b/scripts/dev.sh
index 28453be0..cc465cf9 100755
--- a/scripts/dev.sh
+++ b/scripts/dev.sh
@@ -13,5 +13,8 @@ fi
13. "$REQUIRE_FILE" 13. "$REQUIRE_FILE"
14 14
15$COMPOSER_COMMAND install 15$COMPOSER_COMMAND install
16php bin/console wallabag:install 16if [ -z "$SKIP_WALLABAG_INITIALIZATION" ]
17php bin/console server:run 17then
18 php bin/console wallabag:install
19fi
20php bin/console server:run $HOST