From 08ec032b4183f9e5f5ecdeb4f4fbcc20984f779a Mon Sep 17 00:00:00 2001 From: Rudra Saraswat Date: Mon, 8 May 2023 23:06:58 +0530 Subject: [PATCH] != -> == --- akshara | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/akshara b/akshara index 8a23780..7c52211 100755 --- a/akshara +++ b/akshara @@ -217,11 +217,11 @@ def handle_system_packages(install): exit(1) exec('mkdir', '-p', '/.blendrw') - while exec('umount', '-l', '/.blendrw/usr', stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL) != 0: + while exec('umount', '-l', '/.blendrw/usr', stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL) == 0: pass - while exec('umount', '-l', '/.blendrw/var/lib/pacman', stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL) != 0: + while exec('umount', '-l', '/.blendrw/var/lib/pacman', stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL) == 0: pass - while exec('umount', '-l', '/.blendrw', stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL) != 0: + while exec('umount', '-l', '/.blendrw', stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL) == 0: pass for old_overlay in os.listdir('/mnt'): if old_overlay.startswith('.blend-tmp-overlay-'):