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:
authorDylan Taylor <dylan@dylanmtaylor.com>2021-05-20 17:55:40 -0400
committerDylan Taylor <dylan@dylanmtaylor.com>2021-05-20 17:55:40 -0400
commite6befe53c75b65c88d8f018efc2e6c9479232e9f (patch)
tree66c3c3f3f905f0a270a464f3f0047e5b56b12c48 /examples/guided.py
parent5652ba20aebf11fa482c74cd85468bd092bc8213 (diff)
Use {installation.target} in custom commands handler
Diffstat (limited to 'examples/guided.py')
-rw-r--r--examples/guided.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/guided.py b/examples/guided.py
index fc24ad7e..7de95c72 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -378,7 +378,7 @@ def perform_installation(mountpoint):
# If the user provided custom commands to be run post-installation, execute them now.
if archinstall.arguments.get('custom-commands', None):
- run_custom_user_commands(archinstall.arguments['custom-commands'])
+ run_custom_user_commands(archinstall.arguments['custom-commands'], installation)
installation.log("For post-installation tips, see https://wiki.archlinux.org/index.php/Installation_guide#Post-installation", fg="yellow")
if not archinstall.arguments.get('silent'):