diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/build-apidocs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bin/build-apidocs b/bin/build-apidocs new file mode 100755 index 0000000..a4ff988 --- /dev/null +++ b/bin/build-apidocs @@ -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 import BuildApidocsCommand + +raise SystemExit(BuildApidocsCommand().main()) |