From 01fcaec7c9e138003632be918b1025d40d557094 Mon Sep 17 00:00:00 2001 From: Dave Date: Mon, 4 Sep 2017 13:49:53 -0500 Subject: [PATCH] No empty commits from Travis --- .travis/deploy.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis/deploy.sh b/.travis/deploy.sh index ae6ff8cd..a597b60c 100644 --- a/.travis/deploy.sh +++ b/.travis/deploy.sh @@ -60,7 +60,8 @@ git config user.email "$COMMIT_AUTHOR_EMAIL" # Commit the "changes", i.e. the new version. # The delta will show diffs between new and old versions. git add -A . -git commit --allow-empty -m "Deploy to GitHub: ${SHA}" +#git commit --allow-empty -m "Deploy to GitHub: ${SHA}" +git commit -m "Travis Deploy ${SHA}" # Get the deploy key by using Travis's stored variables to decrypt deploy_key.enc ENCRYPTED_KEY_VAR="encrypted_${ENCRYPTION_LABEL}_key"