We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e57f6d commit 27ea029Copy full SHA for 27ea029
1 file changed
obsidian-wizard.py
@@ -66,7 +66,8 @@ class Colors:
66
"var_size": "5G"
67
}
68
69
-IS_ARCHISO = os.path.isfile("/etc/system.sfs")
+IS_ARCHISO_REAL = os.path.isfile("/etc/system.sfs")
70
+IS_ARCHISO = True
71
OBSIDIANCTL_PATH = "obsidianctl" if IS_ARCHISO else (shutil.which("obsidianctl") or "/tmp/obsidianctl/obsidianctl")
72
73
def get_current_slots():
@@ -330,7 +331,7 @@ def select_system_image(action_type="install"):
330
331
pass
332
333
options = ["Create New Config"]
- if IS_ARCHISO:
334
+ if IS_ARCHISO_REAL:
335
options.append("Default System Image")
336
337
if mkobsfs_files:
0 commit comments