From 45f7fd70790b225b183e25c554406f01741fd4d3 Mon Sep 17 00:00:00 2001 From: Jonah Graham Date: Mon, 22 Aug 2022 19:31:40 -0400 Subject: [PATCH] Correct path to promote script --- releng/promote-files-to-download.Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/releng/promote-files-to-download.Jenkinsfile b/releng/promote-files-to-download.Jenkinsfile index db33469aeb3..257b2ca6ccb 100644 --- a/releng/promote-files-to-download.Jenkinsfile +++ b/releng/promote-files-to-download.Jenkinsfile @@ -11,7 +11,7 @@ pipeline { stage('Upload') { steps { sshagent ( ['projects-storage.eclipse.org-bot-ssh']) { - sh './scripts/promote-files-to-download.sh' + sh './releng/scripts/promote-files-to-download.sh' } } }