From d42648422a57fc3116b9199daa2cf6c38d09454e Mon Sep 17 00:00:00 2001 From: Henrik Date: Tue, 6 Feb 2018 18:27:30 +0100 Subject: [PATCH] Bump version to 5.0.0-alpha --- build.fsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.fsx b/build.fsx index 0c61a119f..785c237c2 100644 --- a/build.fsx +++ b/build.fsx @@ -133,7 +133,8 @@ Target "Release" (fun _ -> let remote = Git.CommandHelper.getGitResult "" "remote -v" |> Seq.tryFind (fun s -> s.EndsWith "(push)" && s.Contains gitOwnerName) - |> function None -> ("ssh://github.com/"+gitOwnerName) | Some s -> s.Split().[0] + |> function None -> "git@github.com:logary/logary.git" + | Some s -> s.Split().[0] Git.Staging.StageAll "" Git.Commit.Commit "" (sprintf "Bump version to %s" release.NugetVersion)