From d2175b20bd2ffb5519cc7b6799bc8f434aaed64c Mon Sep 17 00:00:00 2001 From: Joby Elliott Date: Wed, 23 Oct 2024 19:38:38 -0600 Subject: [PATCH] bug fix --- install/error-pages.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install/error-pages.sh b/install/error-pages.sh index 9bf4191..6dc848c 100644 --- a/install/error-pages.sh +++ b/install/error-pages.sh @@ -22,9 +22,9 @@ fi # Create destination directory if it doesn't exist mkdir -p "$DEST_DIR" -# Copy all .conf files -echo "Copying configuration files..." -cp -v "$SRC_DIR"/*.conf "$DEST_DIR/" +# Copy all .html files +echo "Copying error page files..." +cp -v "$SRC_DIR"/*.html "$DEST_DIR/" # Set proper permissions echo "Setting permissions..."