Skip to content

Commit

Permalink
fix: remove double slash in path
Browse files Browse the repository at this point in the history
(cherry picked from commit bdfc3f7)
  • Loading branch information
TopProgrammer77 authored and mergify[bot] committed Nov 3, 2023
1 parent fcf86ee commit bdbce1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Uno.Wasm.Bootstrap/ShellTask.cs
Expand Up @@ -362,7 +362,7 @@ private void TouchServiceWorker()
var workerBody = File.ReadAllText(workerFilePath);

workerBody = workerBody.Replace("$(CACHE_KEY)", Path.GetFileName(_remoteBasePackagePath));
workerBody = workerBody.Replace("$(REMOTE_BASE_PATH)", _remoteBasePackagePath + "/");
workerBody = workerBody.Replace("$(REMOTE_BASE_PATH)", _remoteBasePackagePath);
workerBody = workerBody.Replace("$(REMOTE_WEBAPP_PATH)", WebAppBasePath);
workerBody += $"\r\n\r\n// {Path.GetFileName(_managedPath)}";

Expand Down

0 comments on commit bdbce1c

Please sign in to comment.