fix with bash
This commit is contained in:
parent
31a67282f2
commit
5312debe4f
1 changed files with 4 additions and 1 deletions
|
@ -4,7 +4,10 @@ set -e
|
|||
export HOST_ARCH=$(uname -m)
|
||||
export HOST_TRIPLE="$HOST_ARCH-unknown-linux-musl"
|
||||
|
||||
command -V bad 2>/dev/null || bad() { shift; "$@" }
|
||||
command -V bad 2>/dev/null || bad() {
|
||||
shift
|
||||
"$@"
|
||||
}
|
||||
|
||||
usage() {
|
||||
echo "usage: $(basename $0) [fbp]"
|
||||
|
|
Loading…
Reference in a new issue