File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ module.exports = class ESimCommands extends CLICommandBase {
47
47
const device = devices [ 0 ] ;
48
48
const resp = await this . doProvision ( device ) ;
49
49
await this . _changeLed ( device , resp . success ? PROVISIONING_SUCCESS : PROVISIONING_FAILURE ) ;
50
- const outputJsonForDevice = path . join ( this . outputFolder , `${ device . deviceId } .json` ) ;
50
+ const outputJsonForDevice = path . join ( this . outputFolder , `${ device . deviceId } .json` ) ;
51
51
this . _addToJson ( outputJsonForDevice , resp ) ;
52
52
}
53
53
@@ -62,7 +62,7 @@ module.exports = class ESimCommands extends CLICommandBase {
62
62
const deviceId = device . deviceId ;
63
63
provisionedDevices . add ( deviceId ) ;
64
64
console . log ( `Device ${ deviceId } connected` ) ;
65
- const outputJsonForDevice = path . join ( this . outputFolder , `${ deviceId } .json` ) ;
65
+ const outputJsonForDevice = path . join ( this . outputFolder , `${ deviceId } .json` ) ;
66
66
const resp = await this . doProvision ( device , { verbose : false } ) ;
67
67
await this . _changeLed ( device , resp . success ? PROVISIONING_SUCCESS : PROVISIONING_FAILURE ) ;
68
68
this . _addToJson ( outputJsonForDevice , resp ) ;
You can’t perform that action at this time.
0 commit comments