From 5c9261912a5d3f66d0edec02b1fb003b5d20629b Mon Sep 17 00:00:00 2001 From: Richard Wall Date: Sun, 22 Aug 2010 11:52:03 +0100 Subject: Add a documentation build script --- bin/build-apidocs | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 bin/build-apidocs (limited to 'bin') 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()) -- cgit v1.2.3-2-g168b From a6d2d76abf5b5e601fc5512929ef5d7efb217641 Mon Sep 17 00:00:00 2001 From: Richard Wall Date: Sun, 22 Aug 2010 12:07:04 +0100 Subject: Fix a log error and correct import in stub script --- bin/build-apidocs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/build-apidocs b/bin/build-apidocs index a4ff988..37a6bd2 100755 --- a/bin/build-apidocs +++ b/bin/build-apidocs @@ -5,6 +5,6 @@ import sys # Add the current branch to the python path sys.path.append(os.path.join(os.path.dirname(__file__), '..')) -from jarmonbuild import BuildApidocsCommand +from jarmonbuild.commands import BuildApidocsCommand raise SystemExit(BuildApidocsCommand().main()) -- cgit v1.2.3-2-g168b From 1cc9ef400b8ebe09ec15a4acf1b0c51ddab18f15 Mon Sep 17 00:00:00 2001 From: Richard Wall Date: Sun, 22 Aug 2010 17:51:47 +0100 Subject: Add a command hierarchy and complete the release command --- bin/build | 10 ++++++++++ bin/build-apidocs | 10 ---------- 2 files changed, 10 insertions(+), 10 deletions(-) create mode 100755 bin/build delete mode 100755 bin/build-apidocs (limited to 'bin') 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()) diff --git a/bin/build-apidocs b/bin/build-apidocs deleted file mode 100755 index 37a6bd2..0000000 --- a/bin/build-apidocs +++ /dev/null @@ -1,10 +0,0 @@ -#!/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 BuildApidocsCommand - -raise SystemExit(BuildApidocsCommand().main()) -- cgit v1.2.3-2-g168b