From a9ab84bb0a21a70a56489898acf931a0d9e83963 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Thu, 13 Aug 2026 17:31:22 -0400 Subject: sbolint: warn on typoed variable names: SLCKFLAGS, PRGMAN, PGK --- sbolint | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sbolint b/sbolint index cdf62da..4ae8b71 100755 --- a/sbolint +++ b/sbolint @@ -1557,6 +1557,8 @@ sub check_script { if(!chown_ok($_)) { log_warning("$file:$lineno: chown should use : instead of . for user:group separator"); } + } elsif(/^[^#]*(SLCKFLAGS|PRGMAN|PGK)/) { + log_warning("$file:$lineno: $1 looks like a typo"); } if(/^[^#]*/) { -- cgit v1.2.3