Skip to content
Snippets Groups Projects
Verified Commit e8774725 authored by Morgan Adamiec's avatar Morgan Adamiec
Browse files

makepkg: lint empty arrays

While depend arrays are already linted, many array kinds are
still not. An empty string is never a valid array value so check
all arrays for it.
parent 39c3cbdf
Branches morganamilo/lint
No related tags found
No related merge requests found
......@@ -28,7 +28,7 @@ source "$LIBRARY/util/pkgbuild.sh"
source "$LIBRARY/util/schema.sh"
lint_pkgbuild_functions+=('lint_variable')
lint_pkgbuild_functions+=('lint_array')
lint_variable() {
local i a pkg out bad ret=0
......@@ -95,3 +95,21 @@ lint_variable() {
return $ret
}
lint_array() {
local i var ret=0
for i in ${pkgbuild_schema_arrays[@]}; do
local l=()
get_pkgbuild_all_split_attributes $i l
for var in "${l[@]}"; do
if [[ -z $var ]]; then
error "$(gettext "%s does not allow empty values.")" "$i"
ret=1
fi
done
done
return $ret
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment