aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2026-05-23 16:28:38 -0400
committerB. Watson <urchlay@slackware.uk>2026-05-23 16:28:38 -0400
commit068bb1165da7fcde697baec81055befaee6682dd (patch)
tree3c04fe5591b0f5e3a46797d946184d0c66b8fefe
parente07288b7cf47387028df470f8fdf71f57182e345 (diff)
downloadsbo-maintainer-tools-068bb1165da7fcde697baec81055befaee6682dd.tar.gz
Demote CRLF in diff/patch to a note. Possibly it should go away entirely.
-rw-r--r--TODO1
-rwxr-xr-xsbolint2
2 files changed, 2 insertions, 1 deletions
diff --git a/TODO b/TODO
index 9cfc7fa..f4f29f0 100644
--- a/TODO
+++ b/TODO
@@ -1,5 +1,6 @@
Missing argument in printf at /home/urchlay/bin/sbolint line 544, <$fh> line 2.
+TODO: sbopkglint fails to detect install-info, see pound @ 730a4ab1f9ee3162be2c6daf910c8b064e9169cb
TODO: sbolint should check for invalid characters in REQUIRES. someone
had an issue with a tab character, which looked fine when editing
or viewing the file... but the submission form choked on it.
diff --git a/sbolint b/sbolint
index 8166f39..70e4f86 100755
--- a/sbolint
+++ b/sbolint
@@ -819,7 +819,7 @@ sub check_and_read {
}
if($file =~ /\.(diff|patch)$/i) {
- log_error("$file has DOS-style CRLF line endings, git will mess it up unless you gzip it!") if $crlf_err;
+ log_note("$file has DOS-style CRLF line endings, git may mess it up unless you gzip it") if $crlf_err;
# 20260523 bkw: do not complain if patches lack EOF at end!
} else {
log_error("$file has DOS-style CRLF line endings") if $crlf_err;