mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 07:04:18 +00:00
Maybe fix deploy.sh
This commit is contained in:
parent
46ad7d00a2
commit
c6c8560861
1 changed files with 2 additions and 1 deletions
3
.github/deploy.sh
vendored
3
.github/deploy.sh
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue