This commit is contained in:
Björn Busse 2021-03-03 20:37:15 +01:00
parent 7f81df826a
commit f052f01ebf
2 changed files with 1 additions and 1 deletions

View file

@ -0,0 +1,13 @@
#!/usr/bin/env bash
install() {
if [ -f "bash_unit" ]; then
printf "bash_unit 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