Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/examples/guided.py
diff options
context:
space:
mode:
authorYash Tripathi <tripathiyash97@gmail.com>2021-05-23 13:33:48 +0530
committerGitHub <noreply@github.com>2021-05-23 13:33:48 +0530
commit1d04acb603e46f7dcd52b5ecd6686265bbdc3059 (patch)
tree41418d76237c9cda6abb092d3bc72d3bc94752ad /examples/guided.py
parent87955e0ba659c46a42d7a48955054b47874b38e2 (diff)
added pulling sys-language and sys-encoding from config
Diffstat (limited to 'examples/guided.py')
-rw-r--r--examples/guided.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/guided.py b/examples/guided.py
index 31d11396..c3e5848b 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -448,5 +448,7 @@ else:
if archinstall.arguments.get('mirror-region', None) is not None:
selected_region = archinstall.arguments.get('mirror-region', None)
archinstall.arguments['mirror-region'] = {selected_region: archinstall.list_mirrors()[selected_region]}
-
+ archinstall.arguments['sys-language'] = archinstall.arguments.get('sys-language', 'en_US')
+ archinstall.arguments['sys-encoding'] = archinstall.arguments.get('sys-encoding', 'utf-8')
+
perform_installation_steps()