Skip to content

Commit e88c3c5

Browse files
committed
[lldb-dap] Fix the vscode-uninstall command
The command was using the wrong publisher name ("llvm" rather than "llvm-vs-code-extensions") resulting in the command complaining: ``` npm run vscode-uninstall > [email protected] vscode-uninstall > code --uninstall-extension llvm.lldb-dap Extension 'llvm.lldb-dap' is not installed. Make sure you use the full extension ID, including the publisher, e.g.: ms-dotnettools.csharp ``` (cherry picked from commit f715124)
1 parent 2992ffc commit e88c3c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/tools/lldb-dap/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"format": "npx prettier './src-ts/' --write",
4545
"package": "vsce package --out ./out/lldb-dap.vsix",
4646
"publish": "vsce publish",
47-
"vscode-uninstall": "code --uninstall-extension llvm.lldb-dap",
47+
"vscode-uninstall": "code --uninstall-extension llvm-vs-code-extensions.lldb-dap",
4848
"vscode-install": "code --install-extension ./out/lldb-dap.vsix"
4949
},
5050
"contributes": {
@@ -513,4 +513,4 @@
513513
}
514514
]
515515
}
516-
}
516+
}

0 commit comments

Comments
 (0)