ci-gui: show different dialog if 3dsx was copied

This commit is contained in:
Ian Burgwin
2020-07-22 21:44:49 -07:00
parent 19045d8b87
commit 3006989fc6

View File

@@ -393,9 +393,14 @@ class CustomInstallGUI(ttk.Frame):
def install(): def install():
try: try:
result = installer.start(continue_on_fail=False) result, copied_3dsx = installer.start(continue_on_fail=False)
if result is True: if result is True:
self.log('Done!') self.log('Done!')
if copied_3dsx:
self.show_info('custom-install-finalize has been copied to the SD card.\n'
'To finish the install, run this on the console through the homebrew launcher.\n'
'This will install a ticket and seed if required.')
else:
self.show_info('To finish the install, run custom-install-finalize on the console.\n' self.show_info('To finish the install, run custom-install-finalize on the console.\n'
'This will install a ticket and seed if required.') 'This will install a ticket and seed if required.')
elif result is False: elif result is False: