10 lines
167 B
Plaintext
10 lines
167 B
Plaintext
|
## -*- coding: utf-8; mode: python; -*-
|
||
|
# -*- coding: utf-8; -*-
|
||
|
|
||
|
from invoke import task
|
||
|
|
||
|
|
||
|
@task
|
||
|
def upgrade(ctx):
|
||
|
ctx.run('${envroot}/app/upgrade.sh --verbose')
|