mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-11-16 07:47:35 +01:00
Set False by default
This commit is contained in:
parent
2aab67b1da
commit
d09e10be92
2 changed files with 3 additions and 3 deletions
|
@ -28,8 +28,8 @@
|
|||
# Set false to all the questions. If set false option --yes will not work.
|
||||
# Default is true. [true/false].
|
||||
ASK_QUESTION = true
|
||||
# Download parallel multi-sources. Default is true. [true/false].
|
||||
PARALLEL_DOWNLOADS = true
|
||||
# Download parallel multi-sources. Default is false. [true/false].
|
||||
PARALLEL_DOWNLOADS = false
|
||||
# Pass your file pattern here, instead, you can use '--file-pattern=' option.
|
||||
FILE_PATTERN = ""
|
||||
|
||||
|
|
|
@ -120,7 +120,7 @@ class Configs:
|
|||
ask_question: bool = True
|
||||
|
||||
# Download parallel multi-sources.
|
||||
parallel_downloads: bool = True
|
||||
parallel_downloads: bool = False
|
||||
|
||||
# Pass the file pattern here.
|
||||
file_pattern_conf: str = ""
|
||||
|
|
Loading…
Reference in a new issue