From 72446a5b1e6e8241283e150c3e5edb0cd4f30de0 Mon Sep 17 00:00:00 2001 From: Will Rouesnel Date: Sat, 17 Nov 2018 16:11:38 +1100 Subject: [PATCH] Don't fail builds when GIT_API_KEY is not available (on PRs). We don't need GIT_API_KEY to clone the assets branch, so don't require it. --- gh-assets-clone.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/gh-assets-clone.sh b/gh-assets-clone.sh index 63bc50f6..506485e0 100755 --- a/gh-assets-clone.sh +++ b/gh-assets-clone.sh @@ -3,7 +3,6 @@ # GIT_API_KEY. [ ! -z "$GIT_ASSETS_BRANCH" ] || exit 1 -[ ! -z "$GIT_API_KEY" ] || exit 1 setup_git() { git config --global user.email "travis@travis-ci.org" || exit 1