Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/examples/only_hd.py
diff options
context:
space:
mode:
authorWerner Llácer <wllacer@gmail.com>2022-01-15 21:44:13 +0100
committerGitHub <noreply@github.com>2022-01-15 21:44:13 +0100
commit3d30a4eb28bd84713571c52622cb88b6458076a5 (patch)
tree466c55033cb5b39ecdcedc2173aa4255fd3fd2f8 /examples/only_hd.py
parent31f55e8d6b0b6e7a7fe28433d7d305d58d5667a1 (diff)
Missing arguments after GlobalMenu execution (issue #868) (#871)
* Install.__init__ parameter kernel as a list everywhere. I've dropped the string check, as it shouldn't happen again, and it's good that it fails, when it happens * Global Menu now loads in the arguments dict all options enabled with default value and no manually selected (issue #868)
Diffstat (limited to 'examples/only_hd.py')
-rw-r--r--examples/only_hd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/only_hd.py b/examples/only_hd.py
index addb1d67..962787ba 100644
--- a/examples/only_hd.py
+++ b/examples/only_hd.py
@@ -174,7 +174,7 @@ def perform_installation(mountpoint):
Only requirement is that the block devices are
formatted and setup prior to entering this function.
"""
- with archinstall.Installer(mountpoint, kernels=archinstall.arguments.get('kernels', 'linux')) as installation:
+ with archinstall.Installer(mountpoint, kernels=None) as installation:
# Mount all the drives to the desired mountpoint
# This *can* be done outside of the installation, but the installer can deal with it.
if archinstall.storage.get('disk_layouts'):