Skip to content

Commit

Permalink
Update install script URLs (#96)
Browse files Browse the repository at this point in the history
  • Loading branch information
bugadani authored May 23, 2024
1 parent e329761 commit 342084b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "probe-rs-debugger",
"displayName": "Debugger for probe-rs",
"version": "0.24.0",
"version": "0.24.1",
"publisher": "probe-rs",
"description": "probe-rs Debug Adapter for VS Code.",
"author": {
Expand Down
4 changes: 2 additions & 2 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -557,10 +557,10 @@ function installProbeRs() {
const launchedDebugAdapter = childProcess.exec(
windows
? `powershell.exe -encodedCommand ${Buffer.from(
'irm https://github.com/probe-rs/probe-rs/releases/latest/download/probe-rs-installer.ps1 | iex',
'irm https://github.com/probe-rs/probe-rs/releases/latest/download/probe-rs-tools-installer.ps1 | iex',
'utf16le',
).toString('base64')}`
: "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/probe-rs/probe-rs/releases/latest/download/probe-rs-installer.sh | sh",
: "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/probe-rs/probe-rs/releases/latest/download/probe-rs-tools-installer.sh | sh",
(error, stdout, stderr) => {
if (error) {
console.error(`exec error: ${error}`);
Expand Down

0 comments on commit 342084b

Please sign in to comment.