From b0f562062ae4264a152bb136dee92b9e41a8f959 Mon Sep 17 00:00:00 2001 From: Roy Ben Shabat Date: Wed, 26 Mar 2025 09:26:06 +0200 Subject: Fixes Installer output folder issue. --- Software/Visual_Studio/PPC/Tango.PPC.Common/Publish/PPCPublisher.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common') diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/Publish/PPCPublisher.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/Publish/PPCPublisher.cs index 5127021f7..fff15c2d4 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.Common/Publish/PPCPublisher.cs +++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/Publish/PPCPublisher.cs @@ -149,7 +149,7 @@ namespace Tango.PPC.Common.Publish if (!Directory.Exists(Options.InstallerOutputFolder)) { - throw new DirectoryNotFoundException($"Installer output folder does not exists '{Options.InstallerOutputFolder}'."); + Directory.CreateDirectory(Options.InstallerOutputFolder); } } -- cgit v1.3.1