Improve the script messages if no console IP address is set

This commit is contained in:
Matthew Lopez 2024-05-27 20:48:12 -04:00
parent be84670811
commit 31a2339608
No known key found for this signature in database
GPG Key ID: 302A6EE3D63B7E0E
2 changed files with 9 additions and 0 deletions

View File

@ -42,4 +42,5 @@ if [[ -n "${WIIU_IP:-}" ]]; then
print_success "Successfully uploaded the new Inkay patches. Reboot your Wii U now to apply them."
else
print_warning "The modified patches were not uploaded to your Wii U because you did not set an IP address."
print_info "Please copy the file \"$(pwd)/Inkay-pretendo.wps\" to your Wii U SD card as \"SD:/wiiu/environments/aroma/plugins/Inkay-pretendo.wps\"."
fi

View File

@ -39,4 +39,12 @@ if [[ -n "${DS_IP:-}" ]]; then
print_success "Successfully uploaded the required files."
else
print_warning "The required files were not uploaded to your 3DS because you did not set an IP address."
print_info "Please copy the following files to your 3DS SD card:"
if [[ -z "$should_reset" ]]; then
print_info "- \"$(pwd)/mitmproxy-ca-cert.pem\" as \"SD:/3ds/juxt-prod.pem\""
print_info "- \"$(pwd)/FriendsAccountSwitcher.gm9\" as \"SD:/gm9/scripts/FriendsAccountSwitcher.gm9\""
print_info "- \"$(pwd)/ResetFriendsTestAccount.3dsx\" as \"SD:/3ds/ResetFriendsTestAccount.3dsx\""
else
print_info "- \"$(pwd)/juxt-prod.pem\" as \"SD:/3ds/juxt-prod.pem\""
fi
fi