summaryrefslogtreecommitdiff
path: root/bin/build
diff options
context:
space:
mode:
authorRichard Wall <richard@aziz>2010-08-23 23:27:43 +0100
committerRichard Wall <richard@aziz>2010-08-23 23:27:43 +0100
commit7a17a59d7178ee5ab68b1f6313ad301ed2c8a9e3 (patch)
tree7654efe701e89af3302e77d5ec37115096637998 /bin/build
parentd2f5c22d5bfb0148ea8a039ddf5cba921fdcaf85 (diff)
parent54b3c39b40077b045e7d10b78eaf85b11dad5a3a (diff)
merge forward from trunk
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())