#!/bin/sh

if ! apk info -eq skim && ! apk info -eq fzf; then
	cat >&2 <<-EOF
	*
	* navi needs either skim fzf to be installed; run e.g. 'apk add skim'.
	*
	EOF
fi

exit 0
