mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 07:26:17 -04:00
11 lines
164 B
Bash
Executable file
11 lines
164 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
err() {
|
|
echo >&2 "$1"
|
|
exit 1
|
|
}
|
|
|
|
if ! test "$(which column)"; then
|
|
err "Need to install dependency 'column' before installation"
|
|
fi
|