mirror of
https://github.com/wallabag/wallabag.git
synced 2024-12-25 09:00:29 +00:00
7 lines
208 B
Bash
7 lines
208 B
Bash
|
#! /usr/bin/env bash
|
||
|
|
||
|
TAG=$(git describe --tags $(git rev-list --tags --max-count=1))
|
||
|
git checkout $TAG
|
||
|
SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist
|
||
|
php bin/console wallabag:install --env=prod
|