Skip to content

Commit

Permalink
fix unexpected newline error
Browse files Browse the repository at this point in the history
  • Loading branch information
tony-schndr committed Jun 5, 2024
1 parent 2292b41 commit cad7970
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .pipelines/templates/template-push-images-to-acr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ 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; rm -rf /run/user/$(id -u $USERNAME)/containers/auth.json' EXIT
export RP_IMAGE_ACR=${{ parameters.rpImageACR }}
if [ -z "${{ parameters.acrCredentialsJSON }}" ]; then
if [ -z ${{ parameters.acrCredentialsJSON }} ]; then
az acr login --name "$RP_IMAGE_ACR"
else

Check failure on line 13 in .pipelines/templates/template-push-images-to-acr.yml

View workflow job for this annotation

GitHub Actions / mega-linter-yaml

13:11 [trailing-spaces] trailing spaces

Check failure on line 13 in .pipelines/templates/template-push-images-to-acr.yml

View workflow job for this annotation

GitHub Actions / mega-linter-yaml

13:11 [trailing-spaces] trailing spaces
trap 'rm -f acr-credentials.json' EXIT
Expand Down

0 comments on commit cad7970

Please sign in to comment.