about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNgô Ngọc Đức Huy <huyngo@disroot.org>2023-06-27 09:28:51 +0700
committerNgô Ngọc Đức Huy <huyngo@disroot.org>2023-06-27 09:28:51 +0700
commit71a148de5374e64f3bc1c7b17d4bf5ed7b0779a3 (patch)
treed6159d90ac49920002aad91452e4106254c32d94
parent74fdbc17f33a41682efc88c9718234972955170c (diff)
downloadblog-71a148de5374e64f3bc1c7b17d4bf5ed7b0779a3.tar.gz
Use recursive for copying folder
-rw-r--r--.build.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.build.yml b/.build.yml
index 1217c5a..bacae7f 100644
--- a/.build.yml
+++ b/.build.yml
@@ -30,11 +30,11 @@ tasks:
 - package: |
     for conlang in haasdaiga ravna isanercent djanzi;
     do
-      cp "$conlang/book" "$site/dotnet/$conlang"
-      cp "$conlang/book" "$site/dotgeek/$conlang"
+      cp -r "$conlang/book" "$site/dotnet/$conlang"
+      cp -r "$conlang/book" "$site/dotgeek/$conlang"
     done
-    cp web-cv "$site/dotnet/cv"
-    cp web-cv "$site/dotgeek/cv"
+    cp -r web-cv "$site/dotnet/cv"
+    cp -r web-cv "$site/dotgeek/cv"
     cd "$site/dotnet"
     tar -cvz . > ../../dotnet.tar.gz
     cd ../dotgeek