Install bash_unit
This commit is contained in:
parent
91224564bb
commit
d7af6025fe
|
@ -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
|
Loading…
Reference in New Issue