Merge "make git show not display a diff"

This commit is contained in:
Jenkins 2013-09-25 13:22:04 +00:00 committed by Gerrit Code Review
commit 5a9609bed3

View File

@ -556,7 +556,7 @@ function git_clone {
echo "Running in offline mode, clones already exist" echo "Running in offline mode, clones already exist"
# print out the results so we know what change was used in the logs # print out the results so we know what change was used in the logs
cd $GIT_DEST cd $GIT_DEST
git show --oneline git show --oneline --quiet
return return
fi fi
@ -604,7 +604,7 @@ function git_clone {
# print out the results so we know what change was used in the logs # print out the results so we know what change was used in the logs
cd $GIT_DEST cd $GIT_DEST
git show --oneline git show --oneline --quiet
} }