navi/src/health.sh
Denis Isidoro b6a5ac1495 Improve test coverage (#84)
Add integration tests
2019-09-27 15:12:55 -03:00

9 lines
No EOL
268 B
Bash

#!/usr/bin/env bash
health::fzf() {
if ! command_exists fzf && ! [ $NAVI_ENV -eq "test" ]; then
echoerr "You need to install fzf before using navi"
echoerr "Please refer to https://github.com/junegunn/fzf for install instructions"
exit 66
fi
}