From 92aa328472ba76197a6036628e6796f4b9ffeed0 Mon Sep 17 00:00:00 2001 From: Louie Shprung Date: Fri, 16 Dec 2022 18:11:28 -0800 Subject: Set index when building plist file --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 554db64..548821c 100644 --- a/Makefile +++ b/Makefile @@ -53,7 +53,11 @@ endif cp -r $(MANUAL_SOURCE)/images $@ $(INFO_PLIST_FILE): src/Info.plist $(CONTENTS_DIR) - cp src/Info.plist $@ + head -n -2 src/Info.plist > $@ + echo " dashIndexFilePath" >> $@ + echo " index.$(LOCALE).html" >> $@ + echo "" >> $@ + echo "" >> $@ $(INDEX_FILE): src/index.sh $(DOCUMENTS_DIR) rm -f $@ -- cgit