DEV: Fixes typo in git stash message comparison.

This commit is contained in:
Eddie Hebert
2013-03-29 17:12:07 -04:00
parent 702e6f00d2
commit 63063b1ebe
+1 -1
View File
@@ -27,7 +27,7 @@ nosetests -x
# But if either fail, it's probably best to have only the offending
# staged commits 'active', anyway.
stash_result=$(git stash --keep-index)
if [ "$stash_result" != "No local changes to save." ]
if [ "$stash_result" != "No local changes to save" ]
then
git stash pop -q
fi