Skip to content
This repository has been archived by the owner on Nov 20, 2024. It is now read-only.

Commit

Permalink
Merge pull request #68 from multiversx/pretty-31
Browse files Browse the repository at this point in the history
Fix path for lldb pretty printer script
  • Loading branch information
andreibancioiu authored Jan 31, 2023
2 parents 19441e6 + a1d33a1 commit d5e4752
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-elrond-ide",
"displayName": "MultiversX IDE",
"description": "MultiversX IDE for developing Smart Contracts",
"version": "0.16.0",
"version": "0.16.1",
"publisher": "Elrond",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions src/sdk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export function getPath() {
}

function getPrettyPrinterPath() {
return path.join(getPath(), "mx_sc_lldb_pretty_printers.py");
return path.join(getPath(), "multiversx_sc_lldb_pretty_printers.py");
}

export async function reinstall() {
Expand Down Expand Up @@ -310,7 +310,7 @@ export async function installRustDebuggerPrettyPrinterScript() {
let inputPath = await showInputBoxWithDefault({
title: "File path",
prompt: "File path to the pretty printer script.",
defaultInput: "tools/rust-debugger/pretty-printers/mx_sc_lldb_pretty_printers.py",
defaultInput: "tools/rust-debugger/pretty-printers/multiversx_sc_lldb_pretty_printers.py",
ignoreFocusOut: true,
});

Expand Down

0 comments on commit d5e4752

Please sign in to comment.