Skip to content

Commit

Permalink
fix icon
Browse files Browse the repository at this point in the history
  • Loading branch information
natolambert committed Aug 12, 2024
1 parent 16181fb commit bad2702
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -147,4 +147,11 @@ $(BUILD)/pdf/$(OUTPUT_FILENAME).pdf: $(PDF_DEPENDENCIES)
$(ECHO_BUILDING)
$(MKDIR_CMD) $(BUILD)/pdf
$(CONTENT) | $(CONTENT_FILTERS) | $(PANDOC_COMMAND) $(ARGS) $(PDF_ARGS) -o $@
$(ECHO_BUILT)
$(ECHO_BUILT)

# copy faveicon.ico to build/ and into build/c/ with bash commands
favicon:
test -f favicon.ico || (echo "favicon.ico not found" && exit 1)
mkdir -p $(BUILD)/html/c/
cp favicon.ico $(BUILD)/html/ || echo "Failed to copy to $(BUILD)/html/"
cp favicon.ico $(BUILD)/html/c/ || echo "Failed to copy to $(BUILD)/html/c/"
Binary file added favicon.ico
Binary file not shown.

0 comments on commit bad2702

Please sign in to comment.