Handle config default in arg parsing
This commit is contained in:
parent
41657b7bb3
commit
7cc131b037
1 changed files with 6 additions and 2 deletions
|
@ -21,7 +21,7 @@ class Installer:
|
||||||
|
|
||||||
def __init__(
|
def __init__(
|
||||||
self,
|
self,
|
||||||
config: str = "configs.yml",
|
config: str,
|
||||||
first_install: bool = False,
|
first_install: bool = False,
|
||||||
force: bool = False,
|
force: bool = False,
|
||||||
hide_commands: bool = False,
|
hide_commands: bool = False,
|
||||||
|
@ -506,7 +506,11 @@ def main() -> None:
|
||||||
|
|
||||||
programs = args.programs
|
programs = args.programs
|
||||||
|
|
||||||
config = args.config
|
if args.config:
|
||||||
|
config = args.config
|
||||||
|
else:
|
||||||
|
config = "configs.yml"
|
||||||
|
|
||||||
first_install = args.first_install
|
first_install = args.first_install
|
||||||
force = args.force
|
force = args.force
|
||||||
from_file = args.from_file
|
from_file = args.from_file
|
||||||
|
|
Loading…
Add table
Reference in a new issue