fix(deploy): mute errors from git stash in deploy.sh

This commit is contained in:
Glavin Wiechert 2014-11-30 12:45:37 -04:00
Родитель 2e947b85f3
Коммит 7300a0b46d
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -54,8 +54,8 @@ if [[ -z $(git status -s) ]]; then
git config user.email "travis-ci@mozilla.com"
fi
# Clear any uncommitted changes
git stash save --keep-index
git stash drop
git stash save --keep-index || true
git stash drop || true
# Fetch the deploy branch before checking out
git fetch origin "$deployBranch":"$deployBranch"
git checkout "$deployBranch"