summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Tiedemann <www.marktiedemann@gmail.com>2019-01-23 22:41:44 +0100
committerRyan Dahl <ry@tinyclouds.org>2019-01-23 16:41:44 -0500
commitd8c99059eca0c24a6985857cee37ae9f1f0cab64 (patch)
tree8779c6dccc36b5ee7092d1f89c3014e927571157
parentb13b2cd883d438a177bacd3d43a3adf170104991 (diff)
Use sh installer instead of python one (denoland/deno_std#148)
Original: https://github.com/denoland/deno_std/commit/d1a9605e53a275672941a49021dbfc095c292ffa
-rw-r--r--azure-pipelines.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index e288bced1..97580b026 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'