aboutsummaryrefslogtreecommitdiff
path: root/ssh_url_generation.go
diff options
context:
space:
mode:
Diffstat (limited to 'ssh_url_generation.go')
-rw-r--r--ssh_url_generation.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/ssh_url_generation.go b/ssh_url_generation.go
index 0cf4c1e..bdef57f 100644
--- a/ssh_url_generation.go
+++ b/ssh_url_generation.go
@@ -6,6 +6,5 @@ import (
)
func generate_ssh_remote_url(group_name, repo_name string) string {
- return strings.TrimSuffix(config.SSH.Root, "/")+"/"+url.PathEscape(group_name)+"/:/repos/"+url.PathEscape(repo_name)
+ return strings.TrimSuffix(config.SSH.Root, "/") + "/" + url.PathEscape(group_name) + "/:/repos/" + url.PathEscape(repo_name)
}
-