File tree 1 file changed +4
-3
lines changed
arduino-ide-extension/src/electron-main/theia
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -385,10 +385,11 @@ export class ElectronMainApplication extends TheiaElectronMainApplication {
385
385
}
386
386
387
387
private async launchFromArgs (
388
- params : ElectronMainCommandOptions
388
+ params : ElectronMainCommandOptions ,
389
+ argv ?: string [ ]
389
390
) : Promise < boolean > {
390
391
// Copy to prevent manipulation of original array
391
- const argCopy = [ ...this . argv ] ;
392
+ const argCopy = [ ...( argv || this . argv ) ] ;
392
393
let path : string | undefined ;
393
394
for ( const maybePath of argCopy ) {
394
395
const resolvedPath = await this . resolvePath ( maybePath , params . cwd ) ;
@@ -526,7 +527,7 @@ export class ElectronMainApplication extends TheiaElectronMainApplication {
526
527
argv : string [ ] ,
527
528
cwd : string
528
529
) : Promise < void > {
529
- if ( await this . launchFromArgs ( { cwd, secondInstance : true } ) ) {
530
+ if ( await this . launchFromArgs ( { cwd, secondInstance : true } , argv ) ) {
530
531
// Application has received a file in its arguments
531
532
return ;
532
533
}
You can’t perform that action at this time.
0 commit comments