Skip to content

Commit 3f96ff1

Browse files
committed
lint fix
1 parent 9757d20 commit 3f96ff1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cmd/esim.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ module.exports = class ESimCommands extends CLICommandBase {
4747
const device = devices[0];
4848
const resp = await this.doProvision(device);
4949
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`);
5151
this._addToJson(outputJsonForDevice, resp);
5252
}
5353

@@ -62,7 +62,7 @@ module.exports = class ESimCommands extends CLICommandBase {
6262
const deviceId = device.deviceId;
6363
provisionedDevices.add(deviceId);
6464
console.log(`Device ${deviceId} connected`);
65-
const outputJsonForDevice = path.join(this.outputFolder, `${deviceId}.json`);
65+
const outputJsonForDevice = path.join(this.outputFolder, `${deviceId}.json`);
6666
const resp = await this.doProvision(device, { verbose: false });
6767
await this._changeLed(device, resp.success ? PROVISIONING_SUCCESS : PROVISIONING_FAILURE);
6868
this._addToJson(outputJsonForDevice, resp);

0 commit comments

Comments
 (0)