Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds+github@gmail.com>2020-09-01 14:06:36 +0200
committerAnton Hvornum <anton.feeds+github@gmail.com>2020-09-01 14:06:36 +0200
commite6293b7d44fa0eda8ff284e1b8853d166f9379ab (patch)
treebd91309eabc5184d6ff9e23b516f421ab8dac125 /examples
parent323af39ed57191747604b64d1c6ed6a46719c84f (diff)
Forgot to send with mirrors in the function call perform_installation() in guided template.
Diffstat (limited to 'examples')
-rw-r--r--examples/guided.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/guided.py b/examples/guided.py
index f8f3f831..33716221 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -131,7 +131,7 @@ with archinstall.Filesystem(harddrive, archinstall.GPT) as fs:
with archinstall.luks2(harddrive.partition[1], 'luksloop', disk_password) as unlocked_device:
unlocked_device.format('btrfs')
- perform_installation(unlocked_device, harddrive.partition[0], keyboard_language)
+ perform_installation(unlocked_device, harddrive.partition[0], keyboard_language, mirror_regions)
else:
harddrive.partition[1].format('ext4')
- perform_installation(harddrive.partition[1], harddrive.partition[0], keyboard_language) \ No newline at end of file
+ perform_installation(harddrive.partition[1], harddrive.partition[0], keyboard_language, mirror_regions) \ No newline at end of file