Skip to content

Commit

Permalink
Default deleteDevChannelBeforeInstall to false instead of true
Browse files Browse the repository at this point in the history
  • Loading branch information
TwitchBronBron committed Jul 26, 2023
1 parent 699feb5 commit bcdebf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DebugConfigurationProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ export class BrightScriptDebugConfigurationProvider implements DebugConfiguratio
config.enableDebugProtocol = config.enableDebugProtocol ? true : false;
config.cwd = folderUri.fsPath;
config.rendezvousTracking = config.rendezvousTracking === false ? false : true;
config.deleteDevChannelBeforeInstall = config.deleteDevChannelBeforeInstall === false ? false : true;
config.deleteDevChannelBeforeInstall = config.deleteDevChannelBeforeInstall === true;

if (config.request !== 'launch') {
await vscode.window.showErrorMessage(`roku-debug only supports the 'launch' request type`);
Expand Down

0 comments on commit bcdebf1

Please sign in to comment.