From bc9146226c4ad7afebc5d7d537ea21e7f1cf540c Mon Sep 17 00:00:00 2001 From: bennerv <10840174+bennerv@users.noreply.github.com> Date: Mon, 7 Feb 2022 11:50:37 -0500 Subject: [PATCH] Clean up debug print statement in pipelines --- .pipelines/templates/template-push-images-to-acr-tagged.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.pipelines/templates/template-push-images-to-acr-tagged.yml b/.pipelines/templates/template-push-images-to-acr-tagged.yml index 13ea7ba57df..018aa452194 100644 --- a/.pipelines/templates/template-push-images-to-acr-tagged.yml +++ b/.pipelines/templates/template-push-images-to-acr-tagged.yml @@ -7,9 +7,6 @@ steps: trap 'set +e; for c in $(docker ps -aq); do docker rm -f $c; done; docker image prune -af ; rm -rf ~/.docker/config.json' EXIT export RP_IMAGE_ACR=${{ parameters.rpImageACR }} export TAG=${{ parameters.imageTag }} - - # TODO - remove this - echo "tag is ${TAG}" az acr login --name "$RP_IMAGE_ACR" # azure checkouts commit, so removing master reference when publishing image export BRANCH=$(Build.SourceBranchName)