The parallel option is now an official feature

This commit is contained in:
Songmu 2019-12-25 23:51:46 +09:00
parent 84cd379a55
commit ce22e22275
2 changed files with 2 additions and 2 deletions

View file

@ -23,7 +23,7 @@ func TestDoImport(t *testing.T) {
name: "normal",
args: []string{},
}, {
name: "parallel (Experimental)",
name: "parallel",
args: []string{"-parallel"},
}}

View file

@ -77,7 +77,7 @@ var commandImport = &cli.Command{
Action: doImport,
Flags: append(cloneFlags,
&cli.BoolFlag{Name: "parallel", Aliases: []string{"P"},
Usage: "[Experimental] Import parallely"}),
Usage: "Import parallely"}),
}
var commandRoot = &cli.Command{