File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -111,9 +111,10 @@ func main() {
111
111
Usage : "set output path to `FILE`. stdout by default" ,
112
112
},
113
113
& cli.StringFlag {
114
- Name : "export-format" ,
115
- Value : "jsonl" ,
116
- Usage : "export format: 'jsonl'/'gzip-jsonl'/'json'/'gzip-json'. 'jsonl' by default" ,
114
+ Name : "export-format" ,
115
+ Aliases : []string {"f" },
116
+ Value : "jsonl" ,
117
+ Usage : "export format: 'jsonl'/'gzip-jsonl'/'json'/'gzip-json'. 'jsonl' by default" ,
117
118
},
118
119
& cli.StringFlag {
119
120
Name : "clone-dir" ,
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ func NewJSONExporter(output io.WriteCloser) Exporter {
28
28
return & JSONExporter {
29
29
elements : []* ExportGitFile {},
30
30
encoder : json .NewEncoder (output ),
31
- writer : output ,
31
+ writer : output ,
32
32
}
33
33
}
34
34
You can’t perform that action at this time.
0 commit comments