Skip to content

Commit

Permalink
fix(download): do not garble download output by default (#2283)
Browse files Browse the repository at this point in the history
limit default concurrent downloads to 1
  • Loading branch information
Jguer authored Sep 18, 2023
1 parent 04c76a4 commit 299aa1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/settings/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 299aa1e

Please sign in to comment.