diff --git a/buckaroo-cli/buckaroo-cli.fsproj b/buckaroo-cli/buckaroo-cli.fsproj
index 00c35ce..38f119b 100644
--- a/buckaroo-cli/buckaroo-cli.fsproj
+++ b/buckaroo-cli/buckaroo-cli.fsproj
@@ -14,7 +14,7 @@
-
+
diff --git a/buckaroo-cli/nuget.config b/buckaroo-cli/nuget.config
index 98f4b8c..0e0d50a 100644
--- a/buckaroo-cli/nuget.config
+++ b/buckaroo-cli/nuget.config
@@ -1,9 +1,8 @@
-
-
+
-
+
\ No newline at end of file
diff --git a/buckaroo/PackageLocation.fs b/buckaroo/PackageLocation.fs
index add56c3..aa76995 100644
--- a/buckaroo/PackageLocation.fs
+++ b/buckaroo/PackageLocation.fs
@@ -45,21 +45,21 @@ module PackageLocation =
then
"https://github.com/" + x.Owner + "/" + x.Project + ".git"
else
- "ssh://git@github.com:" + x.Owner + "/" + x.Project + ".git"
+ "git@github.com:" + x.Owner + "/" + x.Project + ".git"
let bitBucketUrl (x : AdhocPackageIdentifier) =
if Environment.GetEnvironmentVariable "BUCKAROO_BITBUCKET_SSH" |> isNull
then
"https://bitbucket.org/" + x.Owner + "/" + x.Project + ".git"
else
- "ssh://git@bitbucket.org:" + x.Owner + "/" + x.Project + ".git"
+ "git@bitbucket.org:" + x.Owner + "/" + x.Project + ".git"
let gitLabUrl (x : GitLabPackageIdentifier) =
if Environment.GetEnvironmentVariable "BUCKAROO_GITLAB_SSH" |> isNull
then
"https://gitlab.com/" + (x.Groups |> String.concat "/") + "/" + x.Project + ".git"
else
- "ssh://git@gitlab.com:" + (x.Groups |> String.concat "/") + "/" + x.Project + ".git"
+ "git@gitlab.com:" + (x.Groups |> String.concat "/") + "/" + x.Project + ".git"
let versionSetFromLocation location =
match location with