We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33a0b65 commit f89267aCopy full SHA for f89267a
1 file changed
src/cmd/esim.js
@@ -66,11 +66,11 @@ module.exports = class eSimCommands extends CLICommandBase {
66
console.log(`${os.EOL}Provisioning device ${device.deviceId} with platform ${platform}`);
67
68
// Flash firmware and retrieve EID
69
- // await this._flashATPassThroughFirmware(device, platform, port);
+ await this._flashATPassThroughFirmware(device, platform, port);
70
const eid = await this._getEid(port);
71
console.log(`${os.EOL}EID: ${eid}`);
72
73
- // await this._checkForExistingProfiles(port);
+ await this._checkForExistingProfiles(port);
74
75
// Get profiles for this EID from the input JSON
76
const profiles = this._getProfiles(eid);
0 commit comments