Skip to content

Commit

Permalink
Merge pull request #3093 from AdamBrousseau/remove_extra_slash_sdk_url
Browse files Browse the repository at this point in the history
Remove extra slashes in CUSTOMIZED_SDK_URL
  • Loading branch information
Shelley Lambert committed Oct 3, 2018
2 parents 51829e6 + 273f181 commit 77340f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions buildenv/jenkins/common/build
Original file line number Diff line number Diff line change
Expand Up @@ -291,9 +291,9 @@ def archive() {
server.publishBuildInfo buildInfo
// Write URL to env so that we can pull it from the upstream pipeline job
ARTIFACTORY_URL = server.getUrl()
env.CUSTOMIZED_SDK_URL = "${ARTIFACTORY_URL}/${artifactory_upload_dir}/${SDK_FILENAME}"
env.CUSTOMIZED_SDK_URL = "${ARTIFACTORY_URL}/${artifactory_upload_dir}${SDK_FILENAME}"
if (fileExists("${TEST_FILENAME}")) {
env.CUSTOMIZED_SDK_URL += " ${ARTIFACTORY_URL}/${artifactory_upload_dir}/${TEST_FILENAME}"
env.CUSTOMIZED_SDK_URL += " ${ARTIFACTORY_URL}/${artifactory_upload_dir}${TEST_FILENAME}"
}
echo "CUSTOMIZED_SDK_URL:'${CUSTOMIZED_SDK_URL}'"
echo "ARTIFACTORY_CREDS:'${ARTIFACTORY_CREDS}'"
Expand Down

0 comments on commit 77340f0

Please sign in to comment.