From 52f746aae94fe29b275fc40e4809965607c017a2 Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Mon, 24 Jul 2023 10:31:42 -0700 Subject: [PATCH] Ignore path error --- IDE/src/ui/LaunchDialog.bf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IDE/src/ui/LaunchDialog.bf b/IDE/src/ui/LaunchDialog.bf index ffbac5f5..cfbbad3e 100644 --- a/IDE/src/ui/LaunchDialog.bf +++ b/IDE/src/ui/LaunchDialog.bf @@ -361,7 +361,7 @@ namespace IDE.ui else { String targetDir = scope .(); - Path.GetDirectoryPath(targetPath, targetDir); + Path.GetDirectoryPath(targetPath, targetDir).IgnoreError(); if (!targetDir.IsWhiteSpace) { defer workingDir.Remove(0, workingDir.Length);