diff --git a/script/test b/script/test index 4c3cb075..eb394962 100755 --- a/script/test +++ b/script/test @@ -112,9 +112,9 @@ case ${mode} in ;; debug) - if which lldb; then + if hash lldb &> /dev/null; then lldb $cmd -- "${args[@]}" - elif which gdb; then + elif hash gdb &> /dev/null; then gdb $cmd -- "${args[@]}" else echo "No debugger found"