add missing param for

This commit is contained in:
vv01f 2020-07-29 21:27:58 +02:00
parent 6a853cc720
commit d85ef7bd97
Signed by untrusted user who does not match committer: vv01f
GPG Key ID: 02625A16AC1D1FF6
1 changed files with 1 additions and 1 deletions

2
gen.sh
View File

@ -4,7 +4,7 @@
assert_tools () {
err=0
while test $# -gt 0; do
command "$1" >/dev/null 2>/dev/null || {
command -v "$1" >/dev/null 2>/dev/null || {
>&2 printf "tool missing: $1\n"
err=$(( $err + 1 ))
}