Skip to content

Commit 54c1477

Browse files
[ignore] a couple of small fixes for the release build (#1811)
1 parent 6715916 commit 54c1477

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: tools/releaseBuild/Image/DockerFile

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ COPY build.ps1 containerFiles/build.ps1
2323

2424
# Add an environment variable for build versioning
2525
ENV VSTS_BUILD=1
26-
ENV VSTS_BUILD_VERSION=2.0.0
26+
ENV VSTS_BUILD_VERSION=2.0.1
2727

2828
# Uncomment to debug locally
2929
# RUN Import-Module ./containerFiles/dockerInstall.psm1; `

Diff for: vscode-powershell.build.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ task Clean {
7676
Write-Host "`n### Cleaning vscode-powershell`n" -ForegroundColor Green
7777
Remove-Item .\modules\* -Exclude "README.md" -Recurse -Force -ErrorAction Ignore
7878
Remove-Item .\out -Recurse -Force -ErrorAction Ignore
79-
exec { & npm prune }
79+
Remove-Item -Force -Recurse node_modules -ErrorAction Ignore
8080
}
8181

8282
task CleanEditorServices {

0 commit comments

Comments
 (0)