From 41c4a5276053b1ede3e409f7893d44adfb2a16a3 Mon Sep 17 00:00:00 2001 From: softweitao_37264 Date: Fri, 24 May 2024 09:56:15 +0800 Subject: [PATCH] fix: fix relative directory errors when copying files --- ci/copy-assets.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ci/copy-assets.sh b/ci/copy-assets.sh index c29260ee..6ba5d6cb 100644 --- a/ci/copy-assets.sh +++ b/ci/copy-assets.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -cp ./assets/CNAME ./book/ -cp ./assets/*.html ./book/ -cp ./assets/sitemap.xml ./book/ \ No newline at end of file +cp ../assets/CNAME ./book/ +cp ../assets/*.html ./book/ +cp ../assets/sitemap.xml ./book/ \ No newline at end of file