From 609303e24f98b382b08b270e513177d79dd60b2f Mon Sep 17 00:00:00 2001 From: Micah Abbott Date: Mon, 1 Oct 2018 14:35:26 -0400 Subject: [PATCH] treecompose: pass correct args to `pull-mount-oscontainer` In #334, we changed to do the registry login outside of the `pull-mount-oscontainer` script, so that we only require two arguments to the script now. So change the invocation accordingly. --- Jenkinsfile.treecompose | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile.treecompose b/Jenkinsfile.treecompose index 03bf753c..3d1603b0 100644 --- a/Jenkinsfile.treecompose +++ b/Jenkinsfile.treecompose @@ -39,9 +39,9 @@ node(NODE) { utils.registry_login("${OSCONTAINER_IMG}", "${CREDS}") sh """ if ! skopeo inspect docker://${OSCONTAINER_IMG}:buildmaster; then - ./scripts/pull-mount-oscontainer ${API_CI_REGISTRY} ${treecompose_workdir} ${OSCONTAINER_IMG}:latest + ./scripts/pull-mount-oscontainer ${treecompose_workdir} ${OSCONTAINER_IMG}:latest else - ./scripts/pull-mount-oscontainer ${API_CI_REGISTRY} ${treecompose_workdir} ${OSCONTAINER_IMG}:buildmaster + ./scripts/pull-mount-oscontainer ${treecompose_workdir} ${OSCONTAINER_IMG}:buildmaster fi """ }