From 888a54b176beeac9896c92851481aa582d28913d Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Wed, 22 Mar 2023 00:52:44 +0300 Subject: [PATCH] explicitly cleaning up null bytes that seem to creep up when building on github actions... Signed-off-by: Alex A. Naanou --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e224c6f..45a01f2 100644 --- a/Makefile +++ b/Makefile @@ -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 \ > $@