diff options
Diffstat (limited to 'scripts')
-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 | ||