diff options
author | Guido Günther <agx@sigxcpu.org> | 2014-09-12 13:05:47 +0200 |
---|---|---|
committer | Guido Günther <agx@sigxcpu.org> | 2014-09-12 13:48:34 +0200 |
commit | ee4447920b41cad774f1494c0e2b2312ca3a5a9a (patch) | |
tree | fb705b20b33a37d9caa490187f4d76ed771719b1 /gbp/scripts/pq.py | |
parent | e3ea8907d7ef653fe03f0e870a4955deb6a9d9cc (diff) | |
download | git-buildpackage-ee4447920b41cad774f1494c0e2b2312ca3a5a9a.tar.gz git-buildpackage-ee4447920b41cad774f1494c0e2b2312ca3a5a9a.tar.bz2 git-buildpackage-ee4447920b41cad774f1494c0e2b2312ca3a5a9a.zip |
Allow to always drop pq branch after export
Closes: #761160
Diffstat (limited to 'gbp/scripts/pq.py')
-rwxr-xr-x | gbp/scripts/pq.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gbp/scripts/pq.py b/gbp/scripts/pq.py index 3186de5b..80520d49 100755 --- a/gbp/scripts/pq.py +++ b/gbp/scripts/pq.py @@ -94,6 +94,9 @@ def export_patches(repo, branch, options): else: gbp.log.info("No patches on '%s' - nothing to do." % pq_branch) + if options.drop: + drop_pq(repo, branch) + def safe_patches(series): """ @@ -234,6 +237,7 @@ def build_parser(name): help="verbose command execution") parser.add_option("--topic", dest="topic", help="in case of 'apply' topic (subdir) to put patch into") parser.add_config_file_option(option_name="time-machine", dest="time_machine", type="int") + parser.add_boolean_config_file_option("drop", dest='drop') parser.add_option("--force", dest="force", action="store_true", default=False, help="in case of import even import if the branch already exists") parser.add_config_file_option(option_name="color", dest="color", type='tristate') |