Merge pull request #2715 from el-tocino/issue-1943

Fix #1943 - do not attempt update when only launching CLI
pull/2924/head
Kris Gesling 2021-06-22 18:59:29 +09:30 committed by GitHub
commit 8fa6508cce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -190,7 +190,9 @@ if [[ "${1}" == "restart" ]] || [[ "${_opt}" == "restart" ]] ; then
fi
_params=$@
check-dependencies
if [[ ! "${_opt}" == "cli" ]] ; then
check-dependencies
fi
case ${_opt} in
"all")