The build now detects the package maintenance model (separate packaging
and devel branches or the old single packaging branch).
Change-Id: I2e2d22a7582e1c9e70182eea6ce2c3f1f6b97ad5
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
if args.spec:
cmd += ['--spec=%s' % args.spec]
+ # Determine if we're on devel branch
+ orphan_packaging = configmgr.get('packaging_branch', 'orphan-devel')
+ if orphan_packaging:
+ cmd += ['--spec-commit=%s' % orphan_packaging]
+
log.debug("running command: %s" % ' '.join(cmd))
retcode = os.system(' '.join(cmd))
if retcode != 0: