Skip to content
This repository was archived by the owner on Feb 3, 2021. It is now read-only.

Commit cb62207

Browse files
authored
Fix: vsts mutliline secrets (#668)
* backticks to quotes * debug integration tests * typo * remove debug condition
1 parent 0606598 commit cb62207

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.vsts-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ phases:
3838
export BATCH_ACCOUNT_RESOURCE_ID=$(BATCH_ACCOUNT_RESOURCE_ID)
3939
export CLIENT_ID=$(CLIENT_ID)
4040
export CREDENTIAL=$(CREDENTIAL)
41-
export ID_RSA=`$(ID_RSA)`
42-
export ID_RSA_PUB=`$(ID_RSA_PUB)`
41+
export ID_RSA="$(ID_RSA)"
42+
export ID_RSA_PUB="$(ID_RSA_PUB)"
4343
export STORAGE_ACCOUNT_RESOURCE_ID=$(STORAGE_ACCOUNT_RESOURCE_ID)
4444
export TENANT_ID=$(TENANT_ID)
4545
pytest --numprocesses=70 tests/integration_tests

0 commit comments

Comments
 (0)