Skip to content

Commit 3bfa7a2

Browse files
committed
stops bootstraping of server when in debug mode
1 parent 72ea905 commit 3bfa7a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export class Extension {
3838
this.extensionContext = context
3939
this.state = new PersistentState(context.globalState)
4040

41-
await this.bootstrap()
41+
if(!process.env['MCSHADER_DEBUG']) await this.bootstrap()
4242

4343
this.registerCommand('graphDot', commands.generateGraphDot)
4444
this.registerCommand('restart', commands.restartExtension)

0 commit comments

Comments
 (0)