summaryrefslogtreecommitdiffhomepage
path: root/build/check-controllers.sh
diff options
context:
space:
mode:
Diffstat (limited to 'build/check-controllers.sh')
-rwxr-xr-xbuild/check-controllers.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/check-controllers.sh b/build/check-controllers.sh
index 573e6f864..47f66eac9 100755
--- a/build/check-controllers.sh
+++ b/build/check-controllers.sh
@@ -14,7 +14,7 @@ find . -type f -name '*.lua' -path '*/controller/*' | while read controller; do
package="${controller##*/controller/}"; package="${package%.lua}"; package="luci.controller.${package//\//.}"
if ! grep -sqE '\bmodule[[:space:]]*\(?[[:space:]]*("|\047|\[=*\[)'"$package" "$controller"; then
- echo "'$controller' does not containt the expected\n\t'module(\"$package\", ...)' line.\n"
+ echo "'$controller' does not contain the expected\n\t'module(\"$package\", ...)' line.\n"
fi
grep -sqE '\b(Form|SimpleForm)[[:space:]]*\(' "$model" && ! grep -sqE '\bMap[[:space:]]*\(' "$model" && is_form=1 || is_form=0