From 65edf558394527cab42fb0d6c181f1837d776333 Mon Sep 17 00:00:00 2001 From: Andreas Romeyke <andreas.romeyke@slub-dresden.de> Date: Mon, 24 Jul 2023 15:55:40 +0200 Subject: [PATCH] - fixed CI/CD error "unmappable character for encoding" --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ec5ba98..853d556 100644 --- a/Makefile +++ b/Makefile @@ -79,7 +79,7 @@ $(JAR): $(OBJS) @cd $(BUILD); ${JAVAPATH}/jar cfvM ../$@ ./* ; cd .. %.class: %.java - ${JAVAPATH}/javac --release ${JAVARELEASE} -g -classpath ${CLASSPATH}:${JUNITCLASSPATH} -Xlint:all $< + ${JAVAPATH}/javac -encoding utf-8 --release ${JAVARELEASE} -g -classpath ${CLASSPATH}:${JUNITCLASSPATH} -Xlint:all $< doc: $(SOURCES) javadoc -d doc/ $^ -- GitLab