Fix linting of whitespace in pkgver
In order to detect if pkgver contains whitespace, we need to quote it. Previously, only the characters up to the first whitespace was checked. Signed-off-by: Rikard Falkeborn <rikard.falkeborn@gmail.com> Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
parent
55092d0fa7
commit
5c1853124d
1 changed files with 1 additions and 1 deletions
|
@ -47,5 +47,5 @@ lint_pkgver() {
|
||||||
return 0
|
return 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
check_pkgver $pkgver
|
check_pkgver "$pkgver"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue