From 77744798e621c10f1d126bed53bdbfd9d2cb5a62 Mon Sep 17 00:00:00 2001 From: Tyler Leonhardt Date: Mon, 25 Mar 2019 23:58:44 -0700 Subject: [PATCH] a couple of small fixes for the release build --- tools/releaseBuild/Image/DockerFile | 2 +- vscode-powershell.build.ps1 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/releaseBuild/Image/DockerFile b/tools/releaseBuild/Image/DockerFile index 14cf3ab753..d65cafa1ae 100644 --- a/tools/releaseBuild/Image/DockerFile +++ b/tools/releaseBuild/Image/DockerFile @@ -23,7 +23,7 @@ COPY build.ps1 containerFiles/build.ps1 # Add an environment variable for build versioning ENV VSTS_BUILD=1 -ENV VSTS_BUILD_VERSION=2.0.0 +ENV VSTS_BUILD_VERSION=2.0.1 # Uncomment to debug locally # RUN Import-Module ./containerFiles/dockerInstall.psm1; ` diff --git a/vscode-powershell.build.ps1 b/vscode-powershell.build.ps1 index aeda05f194..7c45685b14 100644 --- a/vscode-powershell.build.ps1 +++ b/vscode-powershell.build.ps1 @@ -76,7 +76,7 @@ task Clean { Write-Host "`n### Cleaning vscode-powershell`n" -ForegroundColor Green Remove-Item .\modules\* -Exclude "README.md" -Recurse -Force -ErrorAction Ignore Remove-Item .\out -Recurse -Force -ErrorAction Ignore - exec { & npm prune } + Remove-Item -Force -Recurse node_modules -ErrorAction Ignore } task CleanEditorServices {