14 lines
319 B
Bash
Executable File
14 lines
319 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
install() {
|
|
if [ -f "bash_unit" ]; then
|
|
printf "bash_unit test framework exists\n"
|
|
else
|
|
curl -o /tmp/install.sh -sLO "$1"
|
|
chmod +x /tmp/install.sh
|
|
/tmp/install.sh
|
|
fi
|
|
}
|
|
|
|
install https://raw.githubusercontent.com/bbusse/bash_unit/freebsd-compat/install.sh
|