Skip to content

Commit

Permalink
chore: use command prefix constant when registering command
Browse files Browse the repository at this point in the history
  • Loading branch information
dsanders11 committed Jan 29, 2025
1 parent e598663 commit 9cdaea7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ function registerElectronBuildToolsCommands(

context.subscriptions.push(
vscode.commands.registerCommand(
"electron-build-tools.revealInElectronSidebar",
`${commandPrefix}.revealInElectronSidebar`,
async (file: vscode.Uri) => {
if (/.*\/electron\/patches\/.*\.patch$/.test(file.path)) {
const patchesRoot = vscode.Uri.joinPath(electronRoot, "patches");
Expand Down

0 comments on commit 9cdaea7

Please sign in to comment.