We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b06ec7 commit d7a5a59Copy full SHA for d7a5a59
archinstall/lib/args.py
@@ -207,7 +207,12 @@ def __init__(self) -> None:
207
self._args: Arguments = self._parse_args()
208
209
config = self._parse_config()
210
- self._config = ArchConfig.from_config(config)
+
211
+ try:
212
+ self._config = ArchConfig.from_config(config)
213
+ except ValueError as err:
214
+ warn(str(err))
215
+ exit(1)
216
217
@property
218
def config(self) -> ArchConfig:
0 commit comments