From 8ee5a9466e6dc3cb80d5c134ad84a358d3736fa1 Mon Sep 17 00:00:00 2001 From: Vitali Semianiaka Date: Thu, 1 Jan 2026 22:33:48 +0300 Subject: [PATCH] fix files paths --- Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Program.cs b/Program.cs index 3f1ff07..59eb0c6 100644 --- a/Program.cs +++ b/Program.cs @@ -14,8 +14,8 @@ if (string.IsNullOrEmpty(workflowViewFile) || !Directory.Exists(projectDirectory var workflow = JsonSerializer.Deserialize(File.OpenRead(workflowViewFile), JsonSerializerOptions.Web)!; -var edgesFile = Path.Combine("/sources", $"{workflow.Name}.Edges.cs"); -var nodesFile = Path.Combine("/sources", $"{workflow.Name}.Nodes.cs"); +var edgesFile = Path.Combine(projectDirectory, $"{workflow.Name}.Edges.cs"); +var nodesFile = Path.Combine(projectDirectory, $"{workflow.Name}.Nodes.cs"); // Linking const string templateEdges = """