Fix typo
This commit is contained in:
parent
7f81df826a
commit
f052f01ebf
2 changed files with 1 additions and 1 deletions
13
tests/install_bash_unit.sh
Normal file
13
tests/install_bash_unit.sh
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue