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

limit default concurrent downloads to 1
This commit is contained in:
Jo 2023-09-18 09:51:32 +02:00 committed by GitHub
parent 04c76a404e
commit 299aa1e123
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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,