@@ -38,27 +38,27 @@ var chunkCmd = &cli.Command{
38
38
& cli.Int64Flag {
39
39
Name : "slice-size" ,
40
40
Value : 17179869184 , // 16G
41
- Usage : fmt . Sprintf ( "specify chunk piece size" ) ,
41
+ Usage : "specify chunk piece size" ,
42
42
},
43
43
& cli.IntFlag {
44
44
Name : "parallel" ,
45
45
Value : 4 ,
46
- Usage : fmt . Sprintf ( "specify how many number of goroutines runs when generate file node" ) ,
46
+ Usage : "specify how many number of goroutines runs when generate file node" ,
47
47
},
48
48
& cli.StringFlag {
49
49
Name : "graph-name" ,
50
50
Required : true ,
51
- Usage : fmt . Sprintf ( "specify graph name" ) ,
51
+ Usage : "specify graph name" ,
52
52
},
53
53
& cli.StringFlag {
54
54
Name : "parent-path" ,
55
55
Value : "" ,
56
- Usage : fmt . Sprintf ( "specify graph parent path" ) ,
56
+ Usage : "specify graph parent path" ,
57
57
},
58
58
& cli.StringFlag {
59
59
Name : "car-dir" ,
60
60
Required : true ,
61
- Usage : fmt . Sprintf ( "specify output CAR directory" ) ,
61
+ Usage : "specify output CAR directory" ,
62
62
},
63
63
},
64
64
Action : func (c * cli.Context ) error {
@@ -177,17 +177,17 @@ var retrieveCmd = &cli.Command{
177
177
& cli.StringFlag {
178
178
Name : "car-path" ,
179
179
Required : true ,
180
- Usage : fmt . Sprintf ( "specify source car path, directory or file" ) ,
180
+ Usage : "specify source car path, directory or file" ,
181
181
},
182
182
& cli.StringFlag {
183
183
Name : "output-dir" ,
184
184
Required : true ,
185
- Usage : fmt . Sprintf ( "specify output directory" ) ,
185
+ Usage : "specify output directory" ,
186
186
},
187
187
& cli.IntFlag {
188
188
Name : "parallel" ,
189
189
Value : 4 ,
190
- Usage : fmt . Sprintf ( "specify how many number of goroutines runs when generate file node" ) ,
190
+ Usage : "specify how many number of goroutines runs when generate file node" ,
191
191
},
192
192
},
193
193
Action : func (c * cli.Context ) error {
0 commit comments