Fix all.sh check_tools function to handle paths

This commit is contained in:
Andres AG 2017-01-31 17:04:45 +00:00 committed by Simon Butcher
parent 48776350b2
commit 63cc716575

View file

@ -193,7 +193,7 @@ err_msg()
check_tools()
{
for TOOL in "$@"; do
if ! `hash "$TOOL" >/dev/null 2>&1`; then
if ! `type "$TOOL" >/dev/null 2>&1`; then
err_msg "$TOOL not found!"
exit 1
fi