|
@@ -125,5 +125,9 @@ if __name__ == '__main__':
|
|
parser.add_option('--no-git', help='do not pull from git', action="store_true")
|
|
parser.add_option('--no-git', help='do not pull from git', action="store_true")
|
|
parser.add_option('--pack', help='pack compiled source', action="store_true")
|
|
parser.add_option('--pack', help='pack compiled source', action="store_true")
|
|
(options, args) = parser.parse_args()
|
|
(options, args) = parser.parse_args()
|
|
|
|
+ if len(args) != 1:
|
|
|
|
+ parser.print_help();
|
|
|
|
+ exit(-1)
|
|
|
|
+
|
|
options.output = args[0]
|
|
options.output = args[0]
|
|
build(options)
|
|
build(options)
|