fix: Use right path for zip file
This commit is contained in:
+1
-1
@@ -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
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user