From 21283a3625b0402044943a142fb6e0469afcca82 Mon Sep 17 00:00:00 2001
From: Joel Grunbaum <joelgrun@gmail.com>
Date: Fri, 23 Aug 2019 04:09:50 +0000
Subject: [PATCH] Removed git and hardlinks to repo data for symlinks

---
 build.sh |   19 ++++++++++++-------
 1 files changed, 12 insertions(+), 7 deletions(-)

diff --git a/build.sh b/build.sh
index dccc4e3..062b269 100755
--- a/build.sh
+++ b/build.sh
@@ -2,6 +2,10 @@
 
 #Number of old packages to store, should be at least 1
 NUM_BACK=5
+#remote details
+RUSER=joelgrun
+RLOC=35.225.177.191
+RPATH=/var/www/joelg.cf/html/
 
 function newest_matching_file
 {
@@ -92,7 +96,7 @@
 	fi
 	cd $d
 	#update package to latest from AUR
-	git pull
+	git pull -f
 	makepkg -si --noconfirm
 	if [ $? = 0 ]; then
 		latest=$(newest_matching_file '*.pkg.tar.xz')
@@ -120,7 +124,7 @@
 	fi
 	cd $d
 	#update package to latest from AUR
-	git pull
+	git pull -f
 	makepkg -s --noconfirm
 	if [ $? = 0 ]; then
 		latest=$(newest_matching_file '*.pkg.tar.xz')
@@ -139,8 +143,9 @@
 done
 
 repo-add Chizi123.db.tar.xz x86_64/*
-ln Chizi123.db.tar.xz x86_64/Chizi123.db
-ln Chizi123.files.tar.xz x86_64/Chizi123.files
-git add x86_64
-git commit -m "'$(date +%d/%m/%y-%H:%M)'"
-git push
+#ln Chizi123.db.tar.xz x86_64/Chizi123.db
+#ln Chizi123.files.tar.xz x86_64/Chizi123.files
+#git add x86_64
+#git commit -m "'$(date +%d/%m/%y-%H:%M)'"
+#git push
+rsync -aL --delete x86_64 $RUSER@$RLOC:$RPATH

--
Gitblit v1.9.3