From f155ecfe3e3495f0920e0b4e5ae9d78038124cf9 Mon Sep 17 00:00:00 2001
From: Akshay S Dinesh <akshay@learnlearn.in>
Date: Thu, 30 Nov 2023 00:04:40 +0530
Subject: [PATCH] chore: remove rsync dependency to simplify ci build

---
 build.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/build.sh b/build.sh
index 130fce2..59a9119 100644
--- a/build.sh
+++ b/build.sh
@@ -1,8 +1,8 @@
 echo "Processing assets"
 
 mkdir -p public/fonts public/img
-rsync -avzh --ignore-missing-args node_modules/bootstrap/fonts/*.{ttf,woff,eot,svg,woff2} node_modules/font-awesome/fonts/*.{ttf,woff,eot,svg,woff2,otf} fonts/*.{ttf,woff,woff2} node_modules/bootcards/dist/fonts/*.{ttf,woff,eot,svg,woff2,otf} public/fonts
-rsync -avzh --ignore-missing-args node_modules/leaflet/dist/images/** img/** public/img
+cp node_modules/bootstrap/fonts/*.{ttf,woff,eot,svg,woff2} node_modules/font-awesome/fonts/*.{ttf,woff,eot,svg,woff2,otf} fonts/*.{ttf,woff,woff2} node_modules/bootcards/dist/fonts/*.{ttf,woff,eot,svg,woff2,otf} public/fonts
+cp node_modules/leaflet/dist/images/** img/** public/img
 
 npx pug pug/pages --out public
 
-- 
GitLab