Skip to content
Snippets Groups Projects
Commit a8e05cec authored by Douwe Maan's avatar Douwe Maan
Browse files

Merge branch 'rs-build-ssh-path-prefix' into 'master'

Simplify `build_gitlab_shell_ssh_path_prefix`



See merge request !1928
parents d73d2a5e e1522ec8
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -33,13 +33,15 @@ class Settings < Settingslogic
end
 
def build_gitlab_shell_ssh_path_prefix
user_host = "#{gitlab_shell.ssh_user}@#{gitlab_shell.ssh_host}"
if gitlab_shell.ssh_port != 22
"ssh://#{gitlab_shell.ssh_user}@#{gitlab_shell.ssh_host}:#{gitlab_shell.ssh_port}/"
"ssh://#{user_host}:#{gitlab_shell.ssh_port}/"
else
if gitlab_shell.ssh_host.include? ':'
"[#{gitlab_shell.ssh_user}@#{gitlab_shell.ssh_host}]:"
"[#{user_host}]:"
else
"#{gitlab_shell.ssh_user}@#{gitlab_shell.ssh_host}:"
"#{user_host}:"
end
end
end
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment