diff options
Diffstat (limited to 'azure-pipelines.yml')
| -rw-r--r-- | azure-pipelines.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index d49678ed0..0e7210060 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -26,6 +26,6 @@ jobs: vmImage: 'vs2017-win2016' steps: - 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' - - script: 'C:\Users\VssAdministrator\.deno\bin\deno.exe format.ts --allow-run --allow-write --check' + - bash: echo "##vso[task.prependpath]C:\Users\VssAdministrator\.deno\\bin" + - bash: deno.exe test.ts --allow-run --allow-net --allow-write + - bash: deno.exe format.ts --allow-run --allow-write --check |
