diff options
author | Jérémy Benoist <j0k3r@users.noreply.github.com> | 2019-11-19 14:24:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-19 14:24:35 +0100 |
commit | 8668796106b856ca041512af27268ce6e49d2caf (patch) | |
tree | c712b11c70a72572870fafbf2ef8b55aa7bc4817 | |
parent | a9753ef99018a0b92e6af1f9a6e98fa3c7e92792 (diff) | |
parent | 488e3d7a915dcdce37fe4af14f33293edcb4fbdb (diff) | |
download | wallabag-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-x | scripts/dev.sh | 7 |
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 |
16 | php bin/console wallabag:install | 16 | if [ -z "$SKIP_WALLABAG_INITIALIZATION" ] |
17 | php bin/console server:run | 17 | then |
18 | php bin/console wallabag:install | ||
19 | fi | ||
20 | php bin/console server:run $HOST | ||