Julian Foad wrote on Wed, 09 Oct 2019 15:13 +00:00: > * [SVN-4065] Redefine as: > "Write a pre-commit hook to reject non-conforming eol-style=native." > Put it in 'tools/hook-scripts/'. ... > The redefined SVN-4065 could be a suitable hackathon task.
Isn't writing `svnlook changed -t $TXN | cut -c 5- | while read -r line; do if svnlook propget $REPOS svn:eol-style $line | grep -qx native && svnlook cat -t $TXN $REPOS $line | xxd -p -c 1 | grep -qxi 0d; then exit 1; fi; done` is too small a task for a hackathon?