From a0bab71755b38324403c4234eb61c3abf7279ae2 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Tue, 18 Jun 2013 17:36:40 -0700 Subject: [PATCH] prepend artifact destination url with https --- jenkins/jobs.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins/jobs.groovy b/jenkins/jobs.groovy index 6baba60e1d..63d7e7f5cf 100644 --- a/jenkins/jobs.groovy +++ b/jenkins/jobs.groovy @@ -73,7 +73,7 @@ def hifiJob(String targetName, Boolean deploy) { } EscalateStatus true RunIfJobSuccessful true - script "curl -d 'action=deploy&role=highfidelity-live&revision=${targetName}' ${ARTIFACT_DESTINATION}" + script "curl -d 'action=deploy&role=highfidelity-live&revision=${targetName}' https://${ARTIFACT_DESTINATION}" } } }