view lib/homeauto_anynode/tasks.py @ 1751:610beb3248d1

renames and cleanup
author drewp@bigasterisk.com
date Sun, 28 Apr 2024 17:12:06 -0700
parents bb43ad96da8c
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)