annotate lib/patchablegraph/tasks.py @ 696:c52b172c0824

add publish to ON/OFF messages. split up the main statement handler Ignore-this: b1ec515e6873a6841b1c31c3fb7a2a36
author drewp@bigasterisk.com
date Fri, 31 Jan 2020 23:55:27 -0800
parents 495f573af4f4
children 94610b5263e4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
514
495f573af4f4 make patchablegraph release
drewp@bigasterisk.com
parents:
diff changeset
1 from invoke import task
495f573af4f4 make patchablegraph release
drewp@bigasterisk.com
parents:
diff changeset
2
495f573af4f4 make patchablegraph release
drewp@bigasterisk.com
parents:
diff changeset
3 import sys
495f573af4f4 make patchablegraph release
drewp@bigasterisk.com
parents:
diff changeset
4 sys.path.append('/my/proj/release')
495f573af4f4 make patchablegraph release
drewp@bigasterisk.com
parents:
diff changeset
5 from release import local_release
495f573af4f4 make patchablegraph release
drewp@bigasterisk.com
parents:
diff changeset
6
495f573af4f4 make patchablegraph release
drewp@bigasterisk.com
parents:
diff changeset
7 @task
495f573af4f4 make patchablegraph release
drewp@bigasterisk.com
parents:
diff changeset
8 def release(ctx):
495f573af4f4 make patchablegraph release
drewp@bigasterisk.com
parents:
diff changeset
9 local_release(ctx)