Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds+github@gmail.com>2019-11-29 15:09:54 +0100
committerAnton Hvornum <anton.feeds+github@gmail.com>2019-11-29 15:09:54 +0100
commit2d9606777f24078b86d9e2e25efe0181b3e8c51c (patch)
tree929721148b128ea554c3b6613231d4b2c4735f62
parent56ad7efe845c19c39aa078fb427228e12ae8e559 (diff)
Forgot to setup args
-rw-r--r--archinstall.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/archinstall.py b/archinstall.py
index 5ce575c0..d5ff48a9 100644
--- a/archinstall.py
+++ b/archinstall.py
@@ -28,6 +28,7 @@ harddrives = oDict()
commandlog = []
worker_history = oDict()
instructions = oDict()
+args = {}
import logging
from systemd.journal import JournalHandler
@@ -1122,7 +1123,7 @@ if __name__ == '__main__':
## Setup some defaults
# (in case no command-line parameters or netdeploy-params were given)
- args = setup_args_defaults()
+ args = setup_args_defaults(args)
positionals = []
for arg in sys.argv[1:]:
if '--' == arg[:2]: