Skip to content

Commit 84741ca

Browse files
committed
Jenkinsfile: fix typo for upload-to-bintray
1 parent 84bb443 commit 84741ca

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Jenkinsfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ pipeline {
5151
BINTRAY_LOGIN = credentials('bintray_login')
5252
}
5353
steps {
54-
sh './gradlew --stacktrace -PpreferedRepo=${BINTRAY_URL} -PpreferedUsername=${BINTRAY_LOGIN_UST} -PpreferedPassword=${BINTRAY_LOGIN_PSW} uploadArchives'
54+
sh 'echo "Uploading to ${BINTRAY_URL} using user ${BINTRAY_LOGIN_USR}..."'
55+
sh './gradlew --stacktrace -PpreferedRepo=${BINTRAY_URL} -PpreferedUsername=${BINTRAY_LOGIN_USR} -PpreferedPassword=${BINTRAY_LOGIN_PSW} uploadArchives'
5556
}
5657
}
5758

0 commit comments

Comments
 (0)