1
0
mirror of https://github.com/searxng/searxng.git synced 2024-09-29 16:10:16 +02:00

[fix] manage.sh return with actions exit status

This commit is contained in:
Adam Tauber 2016-03-17 21:43:31 +01:00
parent 1d5afa4ccc
commit dbf4f83231

View File

@ -90,6 +90,6 @@ Commands
"
}
[ "$(command -V "$ACTION" | grep ' function$')" != "" ] \
&& $ACTION \
|| help "action not found"
[ "$(command -V "$ACTION" | grep ' function$')" = "" ] \
&& help "action not found" \
|| $ACTION