File tree Expand file tree Collapse file tree 3 files changed +531
-533
lines changed Expand file tree Collapse file tree 3 files changed +531
-533
lines changed Original file line number Diff line number Diff line change @@ -8,26 +8,26 @@ module.exports = ({ commandProcessor, root }) => {
8
8
'lpa' : {
9
9
description : 'Provide the LPA tool path'
10
10
} ,
11
- 'input' : {
12
- description : 'Provide the input json file path'
13
- } ,
14
- 'output' : {
15
- description : 'Provide the output json file path'
16
- } ,
11
+ 'input' : {
12
+ description : 'Provide the input json file path'
13
+ } ,
14
+ 'output' : {
15
+ description : 'Provide the output json file path'
16
+ } ,
17
17
'binary' : {
18
- description : 'Provide the path to the binaries'
19
- } ,
20
- 'bulk' : {
21
- description : 'Provision multiple devices'
22
- }
18
+ description : 'Provide the path to the binaries'
19
+ } ,
20
+ 'bulk' : {
21
+ description : 'Provision multiple devices'
22
+ }
23
23
} ) ,
24
24
handler : ( args ) => {
25
- const eSimCommands = require ( '../cmd/esim' ) ;
25
+ const eSimCommands = require ( '../cmd/esim' ) ;
26
26
if ( args . bulk ) {
27
- return new eSimCommands ( ) . bulkProvisionCommand ( args ) ;
28
- } else {
29
- return new eSimCommands ( ) . provisionCommand ( args ) ;
30
- }
27
+ return new eSimCommands ( ) . bulkProvisionCommand ( args ) ;
28
+ } else {
29
+ return new eSimCommands ( ) . provisionCommand ( args ) ;
30
+ }
31
31
} ,
32
32
examples : {
33
33
'$0 $command' : 'TBD'
You can’t perform that action at this time.
0 commit comments