Skip to content

Commit

Permalink
Merge pull request #797 from unoplatform/mergify/bp/release/stable/8.…
Browse files Browse the repository at this point in the history
…0/pr-791

fix: remove double slash in the path of uno-config.js (backport #791)
  • Loading branch information
jeromelaban committed Nov 3, 2023
2 parents fcf86ee + bdbce1c commit b1800d6
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 b1800d6

Please sign in to comment.