Fix typo in cover.sh

TrivialFix

Change-Id: I6dbedf49ff84bc27f84ac802cfc1bdd590a8315d
This commit is contained in:
zhangyanxian 2016-12-16 02:42:58 +00:00
parent 521b5e9f96
commit fd5dd9d873
1 changed files with 3 additions and 3 deletions

View File

@ -23,8 +23,8 @@ show_diff () {
}
# Stash uncommitted changes, checkout master and save coverage report
uncommited=$(git status --porcelain | grep -v "^??")
[[ -n $uncommited ]] && git stash > /dev/null
uncommitted=$(git status --porcelain | grep -v "^??")
[[ -n $uncommitted ]] && git stash > /dev/null
git checkout HEAD^
baseline_report=$(mktemp -t sahara_coverageXXXXXXX)
@ -34,7 +34,7 @@ baseline_missing=$(awk 'END { print $3 }' $baseline_report)
# Checkout back and unstash uncommitted changes (if any)
git checkout -
[[ -n $uncommited ]] && git stash pop > /dev/null
[[ -n $uncommitted ]] && git stash pop > /dev/null
# Generate and save coverage report
current_report=$(mktemp -t sahara_coverageXXXXXXX)