updated python installer

This commit is contained in:
2026-03-29 16:02:19 -05:00
parent 3ed1907949
commit 206ca246c5

View File

@@ -407,6 +407,10 @@ class InstallerWindow(Adw.ApplicationWindow):
# ── Worker: partition ─────────────────────────────────────────────────
run_stream(["sudo", "sgdisk", "--zap-all", boot_path], buf)
run_stream(["sudo", "wipefs", "--all", "--force", boot_path], buf)
run_stream(["sudo", "partprobe", boot_path], buf)
def do_partition(self, buf):
GLib.idle_add(append_text, buf, "=== Partitioning drives ===\n")
boot_path = f"/dev/{self.boot_disk}"