Merge pull request #234 from motemen/drop-experimental

The parallel option is now an official feature
This commit is contained in:
Masayuki Matsuki 2019-12-25 23:53:12 +09:00 committed by GitHub
commit 9b1b40b9a8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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{