Fix jq _checkdep return

This commit is contained in:
rwxrob 2021-09-15 13:49:51 -04:00
parent 589f30327a
commit 39fa88375f
No known key found for this signature in database
GPG Key ID: 1CCACEDD2F65578E
1 changed files with 1 additions and 1 deletions

2
cmd
View File

@ -462,7 +462,7 @@ _config_dump() {
# ----------------------------- utilities ----------------------------
_jsonstr() {
_checkdep jq
_checkdep jq || return $?
_buffer "$@" && return $?
jq -MRsc <<< "$1"
}