Skip to content

Commit c45bb9f

Browse files
author
Ajay Kannan
committed
minor changes
1 parent c1b4032 commit c45bb9f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

utilities/after_success.sh

+3-2
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,10 @@ if [ "${TRAVIS_JDK_VERSION}" == "oraclejdk7" ]; then
1919
fi
2020
if [ "${SITE_VERSION##*-}" != "SNAPSHOT" ]; then
2121
# Deploy Maven artifacts (if they don't exist yet) and update artifact version in READMEs.
22-
URL=https://oss.sonatype.org/content/repositories/releases/com/google/gcloud/gcloud-java/$SITE_VERSION
22+
URL=https://oss.sonatype.org/content/repositories/releases/com/google/gcloud/gcloud-java/$SITE_VERSION/
2323
if curl --output /dev/null --silent --head --fail "$URL"; then
24-
echo "Not deploying artifacts because it seems like they already exist."
24+
echo "Not deploying artifacts because it seems like they already exist."
25+
echo "Existence was checked using the url $URL"
2526
else
2627
mvn clean deploy -DskipITs --settings ~/.m2/settings.xml -P sign-deploy
2728
fi

0 commit comments

Comments
 (0)