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-18 22:14:54 +0000
committerAnton Hvornum <anton.feeds+github@gmail.com>2019-11-18 22:14:54 +0000
commitfda94e5b9579298478c79d53c08e9f80ea4424ed (patch)
tree154f0c73b282e6a8e7223126fd9bf0c7a4853648
parentceb73c5523d5ff8fb32e8a95d16d0d81914fbcfc (diff)
Forgot return value
-rw-r--r--archinstall.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/archinstall.py b/archinstall.py
index 76afbddc..7067d5ec 100644
--- a/archinstall.py
+++ b/archinstall.py
@@ -855,6 +855,7 @@ def mount_mountpoints(drive, bootpartition, mountpoint='/mnt/boot', *positionals
bootpartition = args['partitions'][bootpartition]
mount_luksdev(*positionals, **kwargs)
mount_boot(drive, bootpartition, mountpoint='/mnt/boot', *positionals, **kwargs)
+ return True
if __name__ == '__main__':
update_git() # Breaks and restarts the script if an update was found.