Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
prasadtalasila committed Dec 4, 2017
1 parent 16b2082 commit 65569f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/docs_auto_deploy.sh
Expand Up @@ -60,7 +60,7 @@ git config user.email "$COMMIT_AUTHOR_EMAIL"
git diff --exit-code > /dev/null || exitcode=$?
echo "git diff exit code: $exitcode"

if [ -z $(git diff --exit-code > /dev/null) ]; then
if [ -z `git diff --exit-code > /dev/null` ]; then
echo "No changes to the documentation on this push; exiting."
exit 0
fi
Expand Down

0 comments on commit 65569f9

Please sign in to comment.