Added flag to 'cp' command so that it would recursively copy directories

This commit is contained in:
2024-01-31 22:30:00 -06:00
parent 401546e751
commit f9468282f3

View File

@@ -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/
}