Skip to content

Commit 550fa6c

Browse files
author
Artur Stolear
committed
using EnsureDirectoryExists instead of CreateDirectory
1 parent 75130b4 commit 550fa6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.cake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ Task("Create-Release-Notes")
403403
{
404404
IEnumerable<string> redirectedOutput;
405405
var gitReleasNotesExePath = Context.Tools.Resolve("GitReleaseNotes.exe");
406-
CreateDirectory(buildDir);
406+
EnsureDirectoryExists(buildDir);
407407
var releaseNotesExitCode = StartProcess(
408408
gitReleasNotesExePath,
409409
new ProcessSettings {

0 commit comments

Comments
 (0)