tj.git-extras/check_dependencies.sh
2022-05-05 11:19:30 -04:00

11 lines
206 B
Bash
Executable file

#!/usr/bin/env bash
err() {
echo >&2 "$1"
exit 1
}
if ! command -v column >/dev/null 2>&1; then
err "Need to install dependency 'column' before installation (can be found in bsdmainutils)"
fi