mirror of https://github.com/searxng/searxng.git
[fix] ./manage script, prompt the unknown command
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
This commit is contained in:
parent
555bea6f24
commit
e179dba7e4
2
manage
2
manage
|
@ -525,7 +525,7 @@ main() {
|
||||||
*)
|
*)
|
||||||
_type="$(type -t "$cmd")"
|
_type="$(type -t "$cmd")"
|
||||||
if [ "$_type" != 'function' ]; then
|
if [ "$_type" != 'function' ]; then
|
||||||
err_msg "unknown command $1 / use --help"
|
err_msg "unknown command: $cmd / use --help"
|
||||||
return 42
|
return 42
|
||||||
else
|
else
|
||||||
"$cmd" "$@"
|
"$cmd" "$@"
|
||||||
|
|
Loading…
Reference in New Issue