fix: Use right path for zip file

This commit is contained in:
Alan Rynne
2024-10-31 10:50:26 +01:00
parent 16bbfae097
commit 59549e1065
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ public static class Consts
public static readonly InstallerProject[] InstallerManifests =
{
new("archicad", [new("SpeckleConnector", "x64/ReleaseAC27/net6.0-windows")])
new("archicad", [new("SpeckleConnector", "x64/ReleaseAC27/")])
};
}
+1 -1
View File
@@ -102,7 +102,7 @@ Target(
foreach (var asset in x.Projects)
{
var fullPath = Path.Combine(".", asset.ProjectPath, "bin", "Release", asset.TargetName);
var fullPath = Path.Combine(".", asset.ProjectPath, asset.TargetName);
if (!Directory.Exists(fullPath))
{
throw new InvalidOperationException("Could not find: " + fullPath);