mirror of
https://github.com/ihaveamac/custom-install.git
synced 2025-12-06 06:41:45 +00:00
ci-gui: show different dialog if 3dsx was copied
This commit is contained in:
@@ -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:
|
||||||
|
|||||||
Reference in New Issue
Block a user