annotate lib/mqtt_client/tasks.py @ 722:a93fbf0d0daa

dep updates; graph url renames; and other build updates Ignore-this: 4603ef3d8db650a13e543dad8580ade8
author drewp@bigasterisk.com
date Wed, 05 Feb 2020 00:23:06 -0800
parents 2c4e8ef57f08
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
554
2c4e8ef57f08 mqtt_client into a distributable
drewp@bigasterisk.com
parents:
diff changeset
1 from invoke import task
2c4e8ef57f08 mqtt_client into a distributable
drewp@bigasterisk.com
parents:
diff changeset
2
2c4e8ef57f08 mqtt_client into a distributable
drewp@bigasterisk.com
parents:
diff changeset
3 import sys
2c4e8ef57f08 mqtt_client into a distributable
drewp@bigasterisk.com
parents:
diff changeset
4 sys.path.append('/my/proj/release')
2c4e8ef57f08 mqtt_client into a distributable
drewp@bigasterisk.com
parents:
diff changeset
5 from release import local_release
2c4e8ef57f08 mqtt_client into a distributable
drewp@bigasterisk.com
parents:
diff changeset
6
2c4e8ef57f08 mqtt_client into a distributable
drewp@bigasterisk.com
parents:
diff changeset
7 @task
2c4e8ef57f08 mqtt_client into a distributable
drewp@bigasterisk.com
parents:
diff changeset
8 def release(ctx):
2c4e8ef57f08 mqtt_client into a distributable
drewp@bigasterisk.com
parents:
diff changeset
9 local_release(ctx)