tools: fix cache-max-size defaults
This commit is contained in:
parent
962887e6bd
commit
742291eac3
1 changed files with 2 additions and 2 deletions
|
|
@ -62,10 +62,10 @@ def main():
|
||||||
"--store",
|
"--store",
|
||||||
type=str,
|
type=str,
|
||||||
help="Specify the osbuild store",
|
help="Specify the osbuild store",
|
||||||
default=1024 * 1024 * 1024,
|
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--cache-max-size", type=int, help="Specify the osbuild max cache size"
|
"--cache-max-size", type=int, help="Specify the osbuild max cache size",
|
||||||
|
default=1024 * 1024 * 1024,
|
||||||
)
|
)
|
||||||
parser.add_argument("--libdir", type=str, help="Specify the osbuild max cache size")
|
parser.add_argument("--libdir", type=str, help="Specify the osbuild max cache size")
|
||||||
parser.add_argument("stage_test", type=str, help="Specify the stage test")
|
parser.add_argument("stage_test", type=str, help="Specify the stage test")
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue