blob: 755aac1c738fa5f82c1e7520931ffaa57c1fda9a (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#! /usr/bin/env bash
ENV=$1
TAG=$(git describe --tags $(git rev-list --tags --max-count=1))
git checkout $TAG
SYMFONY_ENV=$ENV composer install --no-dev -o --prefer-dist
php bin/console wallabag:install --env=$ENV
|