Skip to content

Commit 0630c59

Browse files
author
Brian Canzanella
committed
renames agent exe for VS
1 parent 08b44c9 commit 0630c59

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

shared/agent/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"pkg": "npm run pkg-vs & npm run pkg-jetbrains",
2929
"pkg-jetbrains": "pkg dist/agent.js --targets node16-linux-x64,node16-macos-x64,node16-win-x64 --options max_old_space_size=2048 --out-path dist/",
3030
"pkg-jetbrains-mac": "pkg dist/agent.js --targets node16-macos-x64 --options max_old_space_size=2048 --output dist/agent-macos-x64",
31-
"pkg-vs": "pkg dist/agent-pkg.js --targets node16-win-x64 --options max_old_space_size=2048 --output dist/agent-pkg-win-x86.exe",
31+
"pkg-vs": "pkg dist/agent-pkg.js --targets node16-win-x64 --options max_old_space_size=2048 --output dist/agent.exe",
3232
"pretty": "prettier --config .prettierrc --write \"./src/**/*.ts\" ./package.json ./.prettierrc",
3333
"rebuild": "npm run clean && npm install --no-save && npm run build",
3434
"update:emoji": "pushd emoji && node ./shortcodeToEmoji.js && popd",

vs/build/build.ps1

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,6 @@ function Build-AgentAndWebview {
9696
throw "Creating packaged artifacts failed, ensure the agent has been built"
9797
}
9898

99-
Copy-Item -Path ..\shared\agent\dist\agent-pkg-win-x86.exe -Destination src\CodeStream.VisualStudio\dist\agent.exe -Force
100-
if ($LastExitCode -ne 0) {
101-
throw "Copying packaged artifacts failed"
102-
}
103-
10499
Write-Log "Packaging agent completed"
105100

106101
Write-Log "Build-AgentAndWebview completed in {$(Get-ElapsedTime($timer))}"

0 commit comments

Comments
 (0)