Fix copying with a lazy patch.

This commit is contained in:
Olivia Brooks
2026-02-27 10:49:45 -05:00
parent 820a1f357a
commit b8f65f2ce4

View File

@@ -83,17 +83,13 @@ do
elif [ "$x" == 'copy' ] elif [ "$x" == 'copy' ]
then 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/.well-known
mkdir -p target/feed 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... action=Copying...
elif [ "$x" == 'conv-img' ] elif [ "$x" == 'conv-img' ]