1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-17 23:56:05 +02:00

Fixed some path error handling, fixed Debug Sessions

This commit is contained in:
Brian Fiete 2020-04-26 08:46:45 -07:00
parent 169e351a63
commit 595f35b42e
2 changed files with 17 additions and 9 deletions

View file

@ -1042,7 +1042,7 @@ namespace IDE
project.mNeedsTargetRebuild = true;
String targetDir = scope String();
Path.GetDirectoryPath(targetPath, targetDir);
Path.GetDirectoryPath(targetPath, targetDir).IgnoreError();
if (!targetDir.IsEmpty)
Directory.CreateDirectory(targetDir).IgnoreError();
}