From 206ca246c5c1a86ba6d5a0b40966931e1e81211c Mon Sep 17 00:00:00 2001 From: naturallaw77 Date: Sun, 29 Mar 2026 16:02:19 -0500 Subject: [PATCH] updated python installer --- iso/installer.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/iso/installer.py b/iso/installer.py index bf96e0b..a96780d 100644 --- a/iso/installer.py +++ b/iso/installer.py @@ -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}"