summaryrefslogtreecommitdiffstats
path: root/src/healthcheck.sh
blob: 90ed69d296b6ba26c7d2ca83c64ea9a2b33ed804 (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env bash

health::fzf() {
   if ! command_exists fzf; 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
}