From 19bb5f6a3bed06cb6d056be9c3f245154af9bd67 Mon Sep 17 00:00:00 2001 From: Richard Webb Date: Fri, 6 Sep 2024 18:32:54 +0100 Subject: [PATCH] Build.fsx: Use Git.Repository.fullClean instead of Git.Repository.fullclean --- build.fsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.fsx b/build.fsx index f01486f59be..f3a37a2fdd4 100644 --- a/build.fsx +++ b/build.fsx @@ -1002,7 +1002,7 @@ Target.create "ReleaseDocs" (fun _ -> let url = sprintf "https://%sgithub.com/%s/%s.git" auth githubReleaseUser gitName Git.Repository.cloneSingleBranch "" url "gh-pages" "gh-pages" - Git.Repository.fullclean "gh-pages" + Git.Repository.fullClean "gh-pages" Shell.copyRecursive "output" "gh-pages" true |> printfn "%A"