Skip to content

Commit

Permalink
don't generate unnecessary output in run-command-on-git-revisions
Browse files Browse the repository at this point in the history
When doing the `reset --hard` it would output something like "HEAD is
now at as2zv22" which would interfer with other scripts.
  • Loading branch information
David Pedersen committed Nov 27, 2014
1 parent 6ddc3cb commit 00c0ac7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/run-command-on-git-revisions
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ run_tests() {
debug "Checking out: $(git log --oneline -1 $rev)"
log_command git checkout --quiet $rev
log_command $test_command
log_command git reset --hard
log_command git reset --hard --quiet
done
log_command git checkout --quiet $end_ref
debug "OK for all revisions!"
Expand Down

0 comments on commit 00c0ac7

Please sign in to comment.