Skip to content

Commit

Permalink
Fix template escaping
Browse files Browse the repository at this point in the history
  • Loading branch information
peppy committed Sep 26, 2024
1 parent 056b5d7 commit edaee6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Builders/WindowsBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public override Uploader CreateUploader()
.Where(File.Exists)
.Last();

extraArgs += $" --signTemplate=\"{signToolPath} /v /debug /td sha256 /fd sha256 /dlib \\\"{dllPath}\\\" /dmdf \\\"{Path.GetFullPath(Program.WindowsCodeSigningMetadataPath)}\\\" /tr http://timestamp.acs.microsoft.com\" {{file...}}";
extraArgs += $" --signTemplate=\"{signToolPath} /v /debug /td sha256 /fd sha256 /dlib \\\"{dllPath}\\\" /dmdf \\\"{Path.GetFullPath(Program.WindowsCodeSigningMetadataPath)}\\\" /tr http://timestamp.acs.microsoft.com {{{{file...}}}}";
}

return new WindowsVelopackUploader(app_name, os_name, RuntimeIdentifier, channel, extraArgs: extraArgs);
Expand Down

0 comments on commit edaee6e

Please sign in to comment.