Skip to content

Commit

Permalink
git: use -v instead of --verbose to make older versions of git happy
Browse files Browse the repository at this point in the history
git 1.5.3 doesn't understand "git add --verbose."

Signed-off-by: David Aguilar <davvid@gmail.com>
  • Loading branch information
davvid committed Jun 12, 2008
1 parent 5cc1a8c commit 2d8ba2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cola/models.py
Expand Up @@ -292,7 +292,7 @@ def add_or_remove(self, *to_process):
if os.path.exists(filename):
to_add.append(filename)

output = self.git.add(verbose=True, *to_add)
output = self.git.add(v=True, *to_add)

if len(to_add) == len(to_process):
# to_process only contained unremoved files --
Expand Down

0 comments on commit 2d8ba2c

Please sign in to comment.