From 37567fbb688d2efcec36480cc6fa76bd38ae0cad Mon Sep 17 00:00:00 2001 From: Ajay Kannan Date: Tue, 12 Apr 2016 08:52:23 -0700 Subject: [PATCH] Update link used to check for artifact deployment --- utilities/after_success.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utilities/after_success.sh b/utilities/after_success.sh index 352b7dd4dfda..7aeecd2f6bbd 100755 --- a/utilities/after_success.sh +++ b/utilities/after_success.sh @@ -19,7 +19,7 @@ if [ "${TRAVIS_JDK_VERSION}" == "oraclejdk7" ]; then fi if [ "${SITE_VERSION##*-}" != "SNAPSHOT" ]; then # Deploy Maven artifacts (if they don't exist yet) and update artifact version in READMEs. - URL=https://oss.sonatype.org/content/repositories/releases/com/google/gcloud/gcloud-java/$SITE_VERSION/ + URL=https://oss.sonatype.org/content/repositories/releases/com/google/cloud/gcloud-java/$SITE_VERSION/ if curl --output /dev/null --silent --head --fail "$URL"; then echo "Not deploying artifacts because it seems like they already exist." echo "Existence was checked using the url $URL"