help=_("Build ID"))
build.add_argument("--resultdir", nargs="?",
help=_("Path were the output files should be copied to"))
- build.add_argument("--non-interactive", action="store_false", dest="interactive",
- help=_("Run in non-interactive mode"))
build.add_argument("--after-shell", action="store_true",
help=_("Run a shell after a successful build"))
build.add_argument("--skip-install-test", action="store_true",
return args
- def pakfire(self, ns, build=True, interactive=True):
+ def pakfire(self, ns, build=True):
# Find distro configuration file
conf = os.path.join(CONFIG_DISTRO_DIR, "%s.conf" % ns.distro)
# Set up logging
logger=logger.log,
- interactive=interactive,
# Enable build mode
build=build,
try:
# Initialise a builder instance and build this package
- p = self.pakfire(ns, interactive=ns.interactive)
+ p = self.pakfire(ns)
# Package any makefiles
if package.endswith(".nm"):