mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 07:26:17 -04:00
11 lines
206 B
Bash
Executable file
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
|