We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c21d086 commit ccb390fCopy full SHA for ccb390f
functions/EmuScripts/emuDeckRPCS3.ps1
@@ -46,6 +46,12 @@ function RPCS3_renameFolders(){
46
# Skip the "shortcuts" folder
47
if ($name -ne "shortcuts") {
48
49
+ if ($name -eq "media.ps3") {
50
+ $newName = "media"
51
+ Rename-Item -Path $directory.FullName -NewName $newName
52
+ Write-Output "Fixed folder '$name' to '$newName'."
53
+ }
54
+
55
# If the folder name does not end with .ps3, add the extension
56
if ($name -eq "media") {
57
Write-Output "The folder 'media' does not need to be renamed."
0 commit comments