From 6a7156df37e79e775802aed1bb51b3cefffa4efe Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Mon, 14 Apr 2025 16:15:54 +0200 Subject: [PATCH] Fixed initial creation of destination --- app/Build/Commands/UpdateMetadataCommands.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/Build/Commands/UpdateMetadataCommands.cs b/app/Build/Commands/UpdateMetadataCommands.cs index 64e05f71..d7055d4a 100644 --- a/app/Build/Commands/UpdateMetadataCommands.cs +++ b/app/Build/Commands/UpdateMetadataCommands.cs @@ -130,6 +130,9 @@ public sealed partial class UpdateMetadataCommands } var dotnetArtifactPath = Path.Combine(pathApp, "bin", "dist"); + if(!Directory.Exists(dotnetArtifactPath)) + Directory.CreateDirectory(dotnetArtifactPath); + var dotnetArtifactFilename = os switch { "windows" => "mindworkAIStudio.exe",