Skip to content

Commit f5864f4

Browse files
Merge pull request #219 from XerTheSquirrel/correct-maven-sync-syntax-error
Correct syntax error in call to maven sync.
2 parents 0729510 + 7ca4a27 commit f5864f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.circleci/release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ sleep 15
131131
# "password": "passwordToken", // Sonatype OSS user password
132132
# "close": "1" // Optional
133133
# }
134-
if ! echo '{"username":"'"$SONATYPE_USERTOKEN"'", "password":"'"$SONATYPE_PASSWORDTOKEN"'", "close", "1"}' | curl --data-binary @- -f -XPOST -u "$BINTRAY_USER:$BINTRAY_API_KEY" -H "Content-Type: application/json" \
134+
if ! echo '{"username":"'"$SONATYPE_USERTOKEN"'", "password":"'"$SONATYPE_PASSWORDTOKEN"'", "close": "1"}' | curl --data-binary @- -f -XPOST -u "$BINTRAY_USER:$BINTRAY_API_KEY" -H "Content-Type: application/json" \
135135
"https://api.bintray.com/maven_central_sync/$BINTRAY_SUBJECT/$BINTRAY_REPO/$BINTRAY_PACKAGE/versions/$__pom_ver"
136136
then
137137
echo "Failed to sync to maven central!"

0 commit comments

Comments
 (0)