Remove unnecessary quotes from command substitutions (#2561)

This commit is contained in:
Casper 2022-05-05 10:28:38 +02:00 committed by GitHub
parent b4c49d272f
commit 628e902233
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
46 changed files with 102 additions and 102 deletions

View file

@ -15,7 +15,7 @@ function _default_start_daemon
_log 'debug' "Starting ${1:?}"
local RESULT
RESULT="$(supervisorctl start "${1}" 2>&1)"
RESULT=$(supervisorctl start "${1}" 2>&1)
# shellcheck disable=SC2181
if [[ ${?} -ne 0 ]]