aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2017-01-19 20:00:01 +0100
committerGuido Günther <agx@sigxcpu.org>2017-01-19 20:00:01 +0100
commitd3cb4db91a658037054312966771c3446cb2e4b5 (patch)
tree36e6fe0ee79db516c140878382e257f5fab6c806
parent24e1f24cff9b75bf53a4d3551fa56294aaaa3c57 (diff)
gbp-posttag-push: add missing dry-run for debian branch push
-rwxr-xr-xexamples/gbp-posttag-push2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/gbp-posttag-push b/examples/gbp-posttag-push
index 26103ee8..ed7c792c 100755
--- a/examples/gbp-posttag-push
+++ b/examples/gbp-posttag-push
@@ -170,7 +170,7 @@ def do_push(repo, dests, debian_tag, debian_sha1, upstream_tag, upstream_sha1, u
gbp.log.info("%s %s to %s" % (verb, debian_tag, dest))
repo.push_tag(dest, debian_tag, dry_run)
gbp.log.info("%s %s to %s:%s" % (verb, debian_sha1, dest, dests[dest]))
- repo.push(dest, debian_sha1, dests[dest])
+ repo.push(dest, debian_sha1, dests[dest], dry_run)
if upstream_tag:
gbp.log.info("%s %s to %s" % (verb, upstream_tag, dest))
repo.push_tag(dest, upstream_tag, dry_run)