Skip to content

Commit 26175e5

Browse files
committed
will create key folder under build if it does not exist
1 parent 01c433a commit 26175e5

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

build/build.fsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ let createKeys = fun _ ->
7373
) (TimeSpan.FromMinutes 5.0) |> ignore
7474

7575
Target "CreateKeysIfAbsent" (fun _ ->
76+
if not (directoryExists "build/keys") then CreateDir "build/keys"
7677
if not (fileExists keyFile) then createKeys()
7778
)
7879

0 commit comments

Comments
 (0)