mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-08 23:41:45 +00:00
fix format again
This commit is contained in:
parent
f90cbb636a
commit
74f28021e7
@ -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"
|
||||||
|
Loading…
Reference in New Issue
Block a user