Skip to content

Commit

Permalink
Fix paths to setup file
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgDangl committed May 7, 2024
1 parent 3346d2b commit 30ddabd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -325,15 +325,15 @@ public static class FileVersionProvider

InnoSetup($"/dAppVersion=\"{GitVersion.AssemblySemVer}\" {OutputDirectory / "Installer.iss"}");

SignExecutablesInFolder(installerDirectory / "output", false);
SignExecutablesInFolder(OutputDirectory / "output" / "Installer", false);
});

Target UploadRevitPlugin => _ => _
.DependsOn(BuildRevitPlugin)
.Executes(() =>
{
var changeLog = GetCompleteChangeLog(ChangeLogFile);
var assets = (OutputDirectory / "output").GlobFiles("*.exe")
var assets = (OutputDirectory / "output" / "Installer").GlobFiles("*.exe")
.Select(f => f.ToString())
.ToArray();
Assert.NotEmpty(assets);
Expand Down

0 comments on commit 30ddabd

Please sign in to comment.