diff options
author | Jeremy Benoist <jeremy.benoist@gmail.com> | 2016-10-11 21:01:30 +0200 |
---|---|---|
committer | Jeremy Benoist <jeremy.benoist@gmail.com> | 2016-10-11 21:01:30 +0200 |
commit | e4cf672ccf61689ba28c2e89fc55f83167800b18 (patch) | |
tree | 5dc22c97797bdcdd0a3d2a7e182410f04a748c1e /scripts/install.sh | |
parent | e57df5611fe82ce61a71d51c762ee9296f18c3ac (diff) | |
parent | dbe94e73a9eaf3acb250812913b0303b35d01a2e (diff) | |
download | wallabag-e4cf672ccf61689ba28c2e89fc55f83167800b18.tar.gz wallabag-e4cf672ccf61689ba28c2e89fc55f83167800b18.tar.zst wallabag-e4cf672ccf61689ba28c2e89fc55f83167800b18.zip |
Merge remote-tracking branch 'origin/master' into 2.2
Diffstat (limited to 'scripts/install.sh')
-rw-r--r-- | scripts/install.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/scripts/install.sh b/scripts/install.sh new file mode 100644 index 00000000..54d0bb78 --- /dev/null +++ b/scripts/install.sh | |||
@@ -0,0 +1,10 @@ | |||
1 | #! /usr/bin/env bash | ||
2 | # You can execute this file to install wallabag | ||
3 | # eg: `sh install.sh prod` | ||
4 | |||
5 | ENV=$1 | ||
6 | TAG=$(git describe --tags $(git rev-list --tags --max-count=1)) | ||
7 | |||
8 | git checkout $TAG | ||
9 | SYMFONY_ENV=$ENV composer install --no-dev -o --prefer-dist | ||
10 | php bin/console wallabag:install --env=$ENV | ||