Browse Source

add installonline

pull/3385/head
neilpang 5 years ago
committed by neil
parent
commit
f3667e440c
  1. 6
      acme.sh

6
acme.sh

@ -6583,7 +6583,7 @@ installOnline() {
shift
fi
_branch="$3"
_branch="$1"
if [ ! "$_branch" ]; then
_branch="master"
else
@ -6822,6 +6822,9 @@ _process() {
--install)
_CMD="install"
;;
--install-online)
_CMD="installonline"
;;
--uninstall)
_CMD="uninstall"
;;
@ -7365,6 +7368,7 @@ _process() {
_debug "Running cmd: ${_CMD}"
case "${_CMD}" in
install) install "$_nocron" "$_confighome" "$_noprofile" "$_accountemail";;
installonline) installOnline "$_nocron" "$_noprofile" $BRANCH;;
uninstall) uninstall "$_nocron" ;;
upgrade) upgrade ;;
issue)

Loading…
Cancel
Save