From c05e755ced4ce4d528ffc5b34ddb44892e2f938f Mon Sep 17 00:00:00 2001 From: Daniel Narvaez Date: Tue, 25 Dec 2012 18:01:03 +0000 Subject: Add --full to the build command --- (limited to 'commands/build') diff --git a/commands/build b/commands/build index d86fecd..714e783 100755 --- a/commands/build +++ b/commands/build @@ -10,6 +10,7 @@ from devbot import build parser = argparse.ArgumentParser() parser.add_argument("module", nargs="?", help="name of the module to build") +parser.add_argument("--full", action="store_true", help="force a full build") args = parser.parse_args() common.setup() @@ -20,7 +21,7 @@ if not system.check(skip_if_unchanged=True): if args.module: success = build.build_one(args.module) else: - success = build.build() + success = build.build(full=args.full) if not success: sys.exit(1) -- cgit v0.9.1