From 6bca93075231fd48948d0c6564c10ec93611b2e8 Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Mon, 6 Jul 2020 15:31:24 -0700 Subject: [PATCH] Remove unnecessary symlink (#8135) This isn't needed anymore thanks to the line: ``` AWS_EC2_PEM_FILE: $(testFarmPem.secureFilePath) ``` --- .azure-pipelines/templates/steps/tox-steps.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.azure-pipelines/templates/steps/tox-steps.yml b/.azure-pipelines/templates/steps/tox-steps.yml index f3b0fc62d..828552e43 100644 --- a/.azure-pipelines/templates/steps/tox-steps.yml +++ b/.azure-pipelines/templates/steps/tox-steps.yml @@ -37,9 +37,6 @@ steps: inputs: secureFile: azure-test-farm.pem condition: contains(variables['TOXENV'], 'test-farm') - - bash: | - ln -s $(testFarmPem.secureFilePath) tests/letstest/test-farm.pem - condition: contains(variables['TOXENV'], 'test-farm') - bash: | export TARGET_BRANCH="`echo "${BUILD_SOURCEBRANCH}" | sed -E 's!refs/(heads|tags)/!!g'`" [ -z "${SYSTEM_PULLREQUEST_TARGETBRANCH}" ] || export TARGET_BRANCH="${SYSTEM_PULLREQUEST_TARGETBRANCH}"