Skip to content

Commit 22100c8

Browse files
authored
Merge pull request #143 from matellush/main
fix: Add missing directory separator to required parent directory
2 parents f167ba4 + 5a48dcb commit 22100c8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

WheelWizard/Services/Installation/RetroRewindUpdater.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ private static async Task<bool> ApplyFileDeletionsBetweenVersions(string current
102102

103103
foreach (var file in deletionsToApply)
104104
{
105-
var absoluteDestinationPath = Path.GetFullPath(PathManager.RiivolutionWhWzFolderPath);
105+
var absoluteDestinationPath = Path.GetFullPath(PathManager.RiivolutionWhWzFolderPath + Path.AltDirectorySeparatorChar);
106106
var filePath = Path.GetFullPath(Path.Combine(absoluteDestinationPath, file.Path.TrimStart('/')));
107107
//because we are actually getting the path from the server,
108108
//we need to make sure we are not getting hacked, so we check if the path is in the riivolution folder

0 commit comments

Comments
 (0)