aboutsummaryrefslogtreecommitdiffhomepage
path: root/gbp/command_wrappers.py
diff options
context:
space:
mode:
authorGuido Guenther <agx@sigxcpu.org>2008-02-29 16:08:00 +0100
committerGuido Guenther <agx@sigxcpu.org>2008-02-29 16:08:00 +0100
commit71d209fa202b3828a1eb7e8518a127a7a0a08596 (patch)
tree704ca6d61854d0c9415a68b722e1b43375aef4ea /gbp/command_wrappers.py
parent5632aafe16c6760aabd940eb0d3b26c852ed455a (diff)
make dsc import repeatable (Closes: #468120)
Diffstat (limited to 'gbp/command_wrappers.py')
-rw-r--r--gbp/command_wrappers.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/gbp/command_wrappers.py b/gbp/command_wrappers.py
index f11d4860..c71d7437 100644
--- a/gbp/command_wrappers.py
+++ b/gbp/command_wrappers.py
@@ -205,8 +205,9 @@ class GitAdd(GitCommand):
class GitRm(GitCommand):
"""Wrap git rm to remove files"""
- def __init__(self):
- GitCommand.__init__(self, 'rm')
+ def __init__(self, verbose=False):
+ args = [ ['-q'], [] ][verbose]
+ GitCommand.__init__(self, cmd='rm', args=args)
self.run_error = "Couldn't remove files"