Skip to content

Commit 6cfbc45

Browse files
committed
Update RPCS3 component_update to prevent existing symlink conflicts during 0.10.0b upgrade. [skip ci]
1 parent cf8aed4 commit 6cfbc45

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

rpcs3/component_update.sh

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,12 @@ if [[ $(check_version_is_older_than "$version_being_updated" "0.10.0b") == "true
5858

5959
# Since in 0.10.0b we added the storage folder we need to migrate the folders
6060

61-
move "$bios_folder/rpcs3/dev_hdd0" "$storage_path/rpcs3/dev_hdd0"
62-
move "$bios_folder/rpcs3/dev_hdd1" "$storage_path/rpcs3/dev_hdd1"
63-
move "$bios_folder/rpcs3/dev_flash" "$storage_path/rpcs3/dev_flash"
64-
move "$bios_folder/rpcs3/dev_flash2" "$storage_path/rpcs3/dev_flash2"
65-
move "$bios_folder/rpcs3/dev_flash3" "$storage_path/rpcs3/dev_flash3"
66-
move "$bios_folder/rpcs3/dev_bdvd" "$storage_path/rpcs3/dev_bdvd"
67-
move "$bios_folder/rpcs3/dev_usb000" "$storage_path/rpcs3/dev_usb000"
68-
61+
unlink "$bios_path/rpcs3/dev_hdd0/home/00000001/savedata"
62+
move "$bios_path/rpcs3/dev_hdd0" "$storage_path/rpcs3/dev_hdd0"
63+
move "$bios_path/rpcs3/dev_hdd1" "$storage_path/rpcs3/dev_hdd1"
64+
move "$bios_path/rpcs3/dev_flash" "$storage_path/rpcs3/dev_flash"
65+
move "$bios_path/rpcs3/dev_flash2" "$storage_path/rpcs3/dev_flash2"
66+
move "$bios_path/rpcs3/dev_flash3" "$storage_path/rpcs3/dev_flash3"
67+
move "$bios_path/rpcs3/dev_bdvd" "$storage_path/rpcs3/dev_bdvd"
68+
move "$bios_path/rpcs3/dev_usb000" "$storage_path/rpcs3/dev_usb000"
6969
fi

0 commit comments

Comments
 (0)