summaryrefslogtreecommitdiff
path: root/bin/build
diff options
context:
space:
mode:
authorRichard Wall <richard@aziz>2010-08-22 22:38:05 +0100
committerRichard Wall <richard@aziz>2010-08-22 22:38:05 +0100
commit54b3c39b40077b045e7d10b78eaf85b11dad5a3a (patch)
tree613de63bd5fa0976e138be2601bd4caf991e61f9 /bin/build
parentfb130e633439f43a733f5de3bd36aa4f34a89fe2 (diff)
parent352f0ea3d709eced87f598b4058d43aff0d5664a (diff)
Merge ~richardw/jarmon/auto-apidocumentationv10.8pre1
* Cleanup and add further doc strings for compatibility with yuidoc * Add a tool to automatically download and run yuidoc on the source tree * Add a tool to automatically create a releasable source archive containing apidocs * Add documentation of the apidoc and release tools. * Rearrange the source tree - moving all examples into the docs/examplesfolder
Diffstat (limited to 'bin/build')
-rwxr-xr-xbin/build10
1 files changed, 10 insertions, 0 deletions
diff --git a/bin/build b/bin/build
new file mode 100755
index 0000000..54a4b62
--- /dev/null
+++ b/bin/build
@@ -0,0 +1,10 @@
+#!/usr/bin/env python
+import os
+import sys
+
+# Add the current branch to the python path
+sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
+
+from jarmonbuild.commands import main
+
+raise SystemExit(main())