From b8f65f2ce41656dd70e1f6c10c9dc501f32b5b8c Mon Sep 17 00:00:00 2001 From: Olivia Brooks <109807080+Cutieguwu@users.noreply.github.com> Date: Fri, 27 Feb 2026 10:49:45 -0500 Subject: [PATCH] Fix copying with a lazy patch. --- build.sh | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/build.sh b/build.sh index 92b76fe..f4a0419 100755 --- a/build.sh +++ b/build.sh @@ -83,17 +83,13 @@ do elif [ "$x" == 'copy' ] then - cmd='cp -R' - - files=( - 'src/.well-known/security.txt' - 'src/feed/rss.xml' - 'src/robots.txt' - ) - mkdir -p target/.well-known mkdir -p target/feed + cp 'src/feed/rss.xml' 'target/feed/rss.xml' + cp 'src/robots.txt' 'target/robots.txt' + cp 'src/.well-known/security.txt' 'target/.well-known/security.txt' + action=Copying... elif [ "$x" == 'conv-img' ]