explicitly cleaning up null bytes that seem to creep up when building on github actions...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2023-03-22 00:52:44 +03:00
parent aab7381159
commit 888a54b176

View File

@ -248,7 +248,9 @@ LN := cp -l
DEPENDS.txt: $(MODULE).cls
cat $< \
| grep -Ezo '\s*\\RequirePackage(\[[^]]*\])?\{[^}]*\}' \
| sed 's/.*{\(.*\)}/hard \1\n/' \
| sed \
-e 's/.*{\(.*\)}/hard \1/' \
-e 's/\x0//' \
| grep -a hard \
> $@