Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-12-16 16:53:36 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-12-16 16:53:36 (GMT)
commit39f3d8a9428e031c4bdb0cc9a26f2fb1df9a7520 (patch)
tree7947f1413318b4379bae8e6c28fc92e61d38d3ee /commands
parentc6206d0f80d5961b5d52a5b03765acdad2c22f7e (diff)
Add a distribute command
It builds and uploads releases.
Diffstat (limited to 'commands')
-rwxr-xr-xcommands/distribute12
1 files changed, 12 insertions, 0 deletions
diff --git a/commands/distribute b/commands/distribute
new file mode 100755
index 0000000..1da8b0b
--- /dev/null
+++ b/commands/distribute
@@ -0,0 +1,12 @@
+#!/usr/bin/python -u
+
+import sys
+
+import common
+
+from devbot import build
+
+common.setup()
+
+if not build.distribute():
+ sys.exit(1)