From a475d0db5386b63b5239d1b779af557c0ca7be02 Mon Sep 17 00:00:00 2001 From: Ohad Ravid Date: Mon, 3 Jun 2019 14:26:18 +0200 Subject: [PATCH] remove rustup so cargo publish won't complain --- azure-pipelines.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index cd28650..f2e82b4 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -25,6 +25,7 @@ steps: curl -sSf -o rustup-init.exe https://win.rustup.rs rustup-init.exe -y --default-toolchain %RUSTUP_TOOLCHAIN% echo "##vso[task.setvariable variable=PATH;]%PATH%;%USERPROFILE%\.cargo\bin" + rm rustup-init.exe displayName: Install rust (windows) condition: eq( variables['Agent.OS'], 'Windows_NT' )