Maybe fix deploy.sh

This commit is contained in:
mcarton 2016-07-19 22:27:39 +02:00
parent 46ad7d00a2
commit c6c8560861

3
.github/deploy.sh vendored
View file

@ -44,7 +44,8 @@ cd out
git config user.name "Travis CI"
git config user.email "travis@ci.invalid"
if [ -z "$(git diff --exit-code)" ]; then
git diff --exit-code
if [ $? != 1 ]; then
echo "No changes to the output on this push; exiting."
exit 0
fi