aboutsummaryrefslogtreecommitdiffhomepage
path: root/git-buildpackage
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2011-04-09 23:04:30 +0200
committerGuido Günther <agx@sigxcpu.org>2011-04-09 23:10:33 +0200
commitc7bb3f195b4434abb8319fb2f92e1cb7955af982 (patch)
tree04a5cbf0fe3e5a3913f66279ffaca981d3b11b1d /git-buildpackage
parent9675b386088ff5af7d877f067b77f66e795203a2 (diff)
Add aliases for gz and bz2 compression types
Diffstat (limited to 'git-buildpackage')
-rwxr-xr-xgit-buildpackage1
1 files changed, 1 insertions, 0 deletions
diff --git a/git-buildpackage b/git-buildpackage
index c52cd017..6bbe52e5 100755
--- a/git-buildpackage
+++ b/git-buildpackage
@@ -270,6 +270,7 @@ def guess_comp_type(repo, comp_type, cp, tarball_dir):
upstream_version = cp['Upstream-Version']
if comp_type != 'auto':
+ comp_type = du.compressor_aliases.get(comp_type, comp_type)
try:
dummy = du.compressor_opts[comp_type]
except KeyError: