mirror of
https://github.com/denisidoro/navi
synced 2024-11-22 03:23:05 +00:00
b6a5ac1495
Add integration tests
9 lines
No EOL
268 B
Bash
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
|
|
} |