Skip to content

Commit 27ea029

Browse files
authored
quick fix for mini iso
1 parent 6e57f6d commit 27ea029

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

obsidian-wizard.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ class Colors:
6666
"var_size": "5G"
6767
}
6868

69-
IS_ARCHISO = os.path.isfile("/etc/system.sfs")
69+
IS_ARCHISO_REAL = os.path.isfile("/etc/system.sfs")
70+
IS_ARCHISO = True
7071
OBSIDIANCTL_PATH = "obsidianctl" if IS_ARCHISO else (shutil.which("obsidianctl") or "/tmp/obsidianctl/obsidianctl")
7172

7273
def get_current_slots():
@@ -330,7 +331,7 @@ def select_system_image(action_type="install"):
330331
pass
331332

332333
options = ["Create New Config"]
333-
if IS_ARCHISO:
334+
if IS_ARCHISO_REAL:
334335
options.append("Default System Image")
335336

336337
if mkobsfs_files:

0 commit comments

Comments
 (0)