From 60a615c2fba1dad60f3e6baa9db541d5230fe49d Mon Sep 17 00:00:00 2001 From: Zhang Qiang Date: Wed, 19 Sep 2012 21:44:23 +0800 Subject: [PATCH] transfer correct gbs export options to depanneur Change-Id: If988d075a91392434d0619662e131291d0bc2123 --- gitbuildsys/cmd_build.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gitbuildsys/cmd_build.py b/gitbuildsys/cmd_build.py index fd87dec..c0afbcb 100644 --- a/gitbuildsys/cmd_build.py +++ b/gitbuildsys/cmd_build.py @@ -337,11 +337,11 @@ def do(opts, args): if opts.commit: cmd += ['--commit=%s' % opts.commit] if opts.upstream_branch: - cmd += ['--upstream-branch'] + cmd += ['--upstream-branch=%s' % opts.upstream_branch] if opts.upstream_tag: - cmd += ['--upstream-tag'] + cmd += ['--upstream-tag=%s' % opts.upstream_tag] if opts.squash_patches_until: - cmd += ['--squash-patches-until'] + cmd += ['--squash-patches-until=%s' % opts.squash_patches_until] msger.debug("running command: %s" % ' '.join(cmd)) if subprocess.call(cmd): -- 2.7.4