From d263568ef74214b0f613dec0cec8610c6320c43f Mon Sep 17 00:00:00 2001 From: Ben Jackson Date: Fri, 21 Aug 2020 18:19:45 +0100 Subject: [PATCH] DOn't link node that you didn't install --- azure-pipelines.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 9b09c49..a97e6b2 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -76,7 +76,8 @@ stages: steps: # Node.js tool installer # Finds or downloads and caches the specified version spec of Node.js and adds it to the PATH - - task: NodeTool@0 + - displayName: Install node + task: NodeTool@0 inputs: versionSpec: '>=12.0.0' @@ -87,8 +88,7 @@ stages: brew install $p brew outdated $p || brew upgrade $p done - brew link --force --overwrite node - displayName: 'Install vim and node' + displayName: 'Install vim and deps' - bash: go get -u github.com/go-delve/delve/cmd/dlv displayName: 'Install Delve for Go'