mirror of
https://github.com/wallabag/wallabag.git
synced 2024-12-24 16:40:30 +00:00
6 lines
208 B
Bash
Executable file
6 lines
208 B
Bash
Executable file
#! /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
|