From f9468282f3e66f0440f6acb5ca03bb086d0c9bd0 Mon Sep 17 00:00:00 2001 From: Aadhavan Srinivasan Date: Wed, 31 Jan 2024 22:30:00 -0600 Subject: [PATCH] Added flag to 'cp' command so that it would recursively copy directories --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index b5d1076..b609dae 100755 --- a/build.sh +++ b/build.sh @@ -201,7 +201,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 ${BASE_PATH}/files ${BASE_PATH}/output/ + cp -r ${BASE_PATH}/files ${BASE_PATH}/output/ }