[Bps-public-commit] Test-Chimps-Client branch, master, updated. 19fdc88fa412d8b0f979a7f93ea2062b6bab8174
Alex M Vandiver
alexmv at bestpractical.com
Wed Dec 30 21:18:17 EST 2009
The branch, master has been updated
via 19fdc88fa412d8b0f979a7f93ea2062b6bab8174 (commit)
via 3933d2de1b748c6bf7094b4a1271c6e0ed9089de (commit)
from 20a4e5b7b329bb1ca3e8d1c7191349ec370abb26 (commit)
Summary of changes:
lib/Test/Chimps/Smoker/Git.pm | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
- Log -----------------------------------------------------------------
commit 3933d2de1b748c6bf7094b4a1271c6e0ed9089de
Author: Alex Vandiver <alexmv at bestpractical.com>
Date: Wed Dec 30 21:05:22 2009 -0500
Revert "Be quieter about updating"
This reverts commit c053949a141387b45e86a9c2c3de3d8df1070562. '-q' in
this context is interpreted as "the remote named '-q'" and not as
anything useful. There being no such remote, it silently did nothing.
diff --git a/lib/Test/Chimps/Smoker/Git.pm b/lib/Test/Chimps/Smoker/Git.pm
index 1fc77f7..7ba3d77 100644
--- a/lib/Test/Chimps/Smoker/Git.pm
+++ b/lib/Test/Chimps/Smoker/Git.pm
@@ -82,7 +82,7 @@ sub next {
my $self = shift;
# Get more revisions
- $self->run_cmd('remote', 'update', '-q');
+ $self->run_cmd('remote', 'update');
# In rev-list terms, "everything that isn't these commit, or an
# ancestor of them"
commit 19fdc88fa412d8b0f979a7f93ea2062b6bab8174
Author: Alex Vandiver <alexmv at bestpractical.com>
Date: Wed Dec 30 21:18:09 2009 -0500
Shell out to get a quieter remote update
diff --git a/lib/Test/Chimps/Smoker/Git.pm b/lib/Test/Chimps/Smoker/Git.pm
index 7ba3d77..901b230 100644
--- a/lib/Test/Chimps/Smoker/Git.pm
+++ b/lib/Test/Chimps/Smoker/Git.pm
@@ -82,7 +82,7 @@ sub next {
my $self = shift;
# Get more revisions
- $self->run_cmd('remote', 'update');
+ `git remote update 2>&1`;
# In rev-list terms, "everything that isn't these commit, or an
# ancestor of them"
-----------------------------------------------------------------------
More information about the Bps-public-commit
mailing list