Commit 74f28021 authored by PM Extra's avatar PM Extra
Browse files

fix format again

parent f90cbb63
...@@ -186,8 +186,14 @@ _ssh_deploy() { ...@@ -186,8 +186,14 @@ _ssh_deploy() {
_local_full_file="" _local_full_file=""
case $DEPLOY_SSH_SERVER in case $DEPLOY_SSH_SERVER in
*:*) _host=${DEPLOY_SSH_SERVER%:*} _port=${DEPLOY_SSH_SERVER##*:};; *:*)
*) _host=$DEPLOY_SSH_SERVER _port=;; _host=${DEPLOY_SSH_SERVER%:*}
_port=${DEPLOY_SSH_SERVER##*:}
;;
*)
_host=$DEPLOY_SSH_SERVER
_port=
;;
esac esac
_info "Deploy certificates to remote server $DEPLOY_SSH_USER@$_host:$_port" _info "Deploy certificates to remote server $DEPLOY_SSH_USER@$_host:$_port"
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment