From 958fc8518a63daa67b877064e63327f2a9f23045 Mon Sep 17 00:00:00 2001 From: Aadhavan Srinivasan Date: Thu, 1 Feb 2024 07:13:56 -0600 Subject: [PATCH] Added code to copy over fonts into output directory --- build.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/build.sh b/build.sh index b609dae..b2b6ea1 100755 --- a/build.sh +++ b/build.sh @@ -202,6 +202,7 @@ gen_index_page() { # Generate an index page (site map) that includes links to th copy_things_in() { cp ${BASE_PATH}/styles.css ${BASE_PATH}/output/ cp -r ${BASE_PATH}/files ${BASE_PATH}/output/ + cp -r ${BASE_PATH}/fonts ${BASE_PATH}/output/ }