Fixed initial creation of destination

This commit is contained in:
Thorsten Sommer 2025-04-14 16:15:54 +02:00
parent ca07b0734e
commit 6a7156df37
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -130,6 +130,9 @@ public sealed partial class UpdateMetadataCommands
} }
var dotnetArtifactPath = Path.Combine(pathApp, "bin", "dist"); var dotnetArtifactPath = Path.Combine(pathApp, "bin", "dist");
if(!Directory.Exists(dotnetArtifactPath))
Directory.CreateDirectory(dotnetArtifactPath);
var dotnetArtifactFilename = os switch var dotnetArtifactFilename = os switch
{ {
"windows" => "mindworkAIStudio.exe", "windows" => "mindworkAIStudio.exe",