Browse Source

fix(download): do not garble download output by default (#2283)

limit default concurrent downloads to 1
Jo 1 year ago
parent
commit
299aa1e123
1 changed files with 1 additions and 1 deletions
  1. 1 1
      pkg/settings/config.go

+ 1 - 1
pkg/settings/config.go

@@ -208,7 +208,7 @@ func DefaultConfig(version string) *Configuration {
 		GitFlags:               "",
 		BottomUp:               true,
 		CompletionInterval:     7,
-		MaxConcurrentDownloads: 0,
+		MaxConcurrentDownloads: 1,
 		SortBy:                 "votes",
 		SearchBy:               "name-desc",
 		SudoLoop:               false,