From d1a9605e53a275672941a49021dbfc095c292ffa Mon Sep 17 00:00:00 2001 From: Mark Tiedemann Date: Wed, 23 Jan 2019 22:41:44 +0100 Subject: [PATCH] Use sh installer instead of python one (#148) --- azure-pipelines.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index e288bced1e..97580b026b 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -7,7 +7,7 @@ jobs: pool: vmImage: 'Ubuntu-16.04' steps: - - script: curl -L https://deno.land/x/install/install.py | python - $(DENO_VERSION) + - script: curl -L https://deno.land/x/install/install.sh | sh -s $(DENO_VERSION) - script: echo '##vso[task.prependpath]$(HOME)/.deno/bin/' - script: deno test.ts --allow-run --allow-net --allow-write @@ -15,7 +15,7 @@ jobs: pool: vmImage: 'macOS-10.13' steps: - - script: curl -L https://deno.land/x/install/install.py | python - $(DENO_VERSION) + - script: curl -L https://deno.land/x/install/install.sh | sh -s $(DENO_VERSION) - script: echo '##vso[task.prependpath]$(HOME)/.deno/bin/' - script: deno test.ts --allow-run --allow-net --allow-write @@ -23,6 +23,6 @@ jobs: pool: vmImage: 'vs2017-win2016' steps: - - powershell: iwr https://deno.land/x/install/install.ps1 -Outfile 'install.ps1'; ./install.ps1 $(DENO_VERSION) + - powershell: iwr https://deno.land/x/install/install.ps1 -out install.ps1; .\install.ps1 $(DENO_VERSION) - script: echo '##vso[task.prependpath]C:\Users\VssAdministrator\.deno\bin\' - script: 'C:\Users\VssAdministrator\.deno\bin\deno.exe test.ts --allow-run --allow-net --allow-write'