Skip to content

Commit

Permalink
Allow sanity checks even if all is good
Browse files Browse the repository at this point in the history
  • Loading branch information
Naim2000 committed Jun 28, 2024
1 parent b50173a commit 1be0075
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions MSET9_installer_script/mset9.py
Original file line number Diff line number Diff line change
Expand Up @@ -999,7 +999,7 @@ def mainMenu():
print("0. Exit")

while 1:
optSelect = getInput([haxState + 1, 5, 0])
optSelect = getInput([haxState + 1, 2, 5, 0])

fs.reload() # (?)

Expand All @@ -1011,6 +1011,10 @@ def mainMenu():
exitOnEnter()

elif optSelect == 2: # Perform sanity checks
if haxState <= 0:
prbad("Can't do that now! Please create the MSET9 ID1 first!")
continue

sanityReport()
exitOnEnter()

Expand All @@ -1025,7 +1029,7 @@ def mainMenu():

elif optSelect == 5: # Remove MSET9
if haxState <= 0:
prinfo("Nothing to do.")
prinfo("MSET9 ID1 not present. Nothing to do.")
continue
if haxState == 3:
prbad("Can't do that now!")
Expand Down

0 comments on commit 1be0075

Please sign in to comment.