mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2026-04-26 00:05:58 +03:00
[GH-ISSUE #1391] Update failed. #464
Labels
No labels
Bloodborne
bug
contributor wanted
documentation
enhancement
frontend
good first issue
help wanted
linux
pull-request
question
release
verification progress
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/shadPS4#464
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @VRArt1 on GitHub (Oct 16, 2024).
Original GitHub issue: https://github.com/shadps4-emu/shadPS4/issues/1391
Trying to update shadps4 results in failure. I am currently on version
437ebc1(2024-10-15 19:34:12) as of writing this the current latest version is170db22(2024-10-15 20:03:35). When attempting to use the update function the update files download but then the follow error results within the command line.@DanielSvoboda commented on GitHub (Oct 16, 2024):
I'm pretty sure it's because of the folder name [Emulators] , those characters should cause problems [ ]
If you can try putting the emulator in another folder and try updating to make sure that this is what is causing the problem
@VRArt1 commented on GitHub (Oct 17, 2024):
Confirmed, that is the cause of it failing to update.
@DanielSvoboda commented on GitHub (Oct 17, 2024):
PowerShell's Expand-Archive function does not handle [ ] characters well.
A temporary workaround is to not save the emulator inside folders with these characters.
A proposed solution would be to change the code to download the update to some Windows temporary folder instead of 'user\temp_download_update'.
To do this, you would have to change the paths in check_update.cpp in DownloadUpdate() and in Install().
I don't have much time for this, if any developer is interested in solving this...
@Hermiten commented on GitHub (Dec 19, 2024):
Fixed