Skip to content

Commit 83a45e8

Browse files
authored
Fixes --silent in conjuction with --config-url (#3465)
1 parent b062271 commit 83a45e8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

archinstall/lib/args.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ def _parse_args(self) -> Arguments:
379379

380380
# amend the parameters (check internal consistency)
381381
# Installation can't be silent if config is not passed
382-
if args.config is None:
382+
if args.config is None and args.config_url is None:
383383
args.silent = False
384384

385385
if args.debug:

0 commit comments

Comments
 (0)