view lib/cycloneerr/tasks.py @ 747:c71e2d5f714b

build updates Ignore-this: 9e61a16fc5a62c116803e38e050a5219
author drewp@bigasterisk.com
date Thu, 13 Feb 2020 10:20:42 -0800
parents 11e090ba2731
children
line wrap: on
line source

from invoke import task

import sys
sys.path.append('/my/proj/release')
from release import local_release

@task
def release(ctx):
    local_release(ctx)