From de1dd1cbdeb3f1a01b2cb34a63a676abfa9351ca Mon Sep 17 00:00:00 2001
From: Chizi123 <joelgrun@gmail.com>
Date: Wed, 12 Jun 2019 04:45:53 +0000
Subject: [PATCH] added updating

---
 build.sh |   16 +++++++++++-----
 1 files changed, 11 insertions(+), 5 deletions(-)

diff --git a/repo/build.sh b/build.sh
similarity index 73%
rename from repo/build.sh
rename to build.sh
index 4933924..5d64268 100644
--- a/repo/build.sh
+++ b/build.sh
@@ -34,20 +34,26 @@
     return 0
 }
 
-for d in 'emacs-git'
+sudo pacman -Syu
+cd $(dirname "$(realpath $0)")
+git rm -r x86_64/*.pkg.tar.xz
+
+for d in `find . -maxdepth 1 -not -path '*/\.*' -type d`
 do
-	if [ "$d" = "x86_64" ]; then
+	if [ "$d" = "./x86_64" ] || [ "$d" = "." ]; then
 		continue
 	fi
 	cd $d
 	git pull
-	makepkg
+	makepkg -s --noconfirm
 	latest=$(newest_matching_file '*.pkg.tar.xz')
 	cd ..
 	rsync $d/$latest x86_64/$latest
-	repo-add ./repo.db.tar.xz x86_64/$latest
+	repo-add ./Chizi123.db.tar.xz x86_64/$latest
 done
 
+cp Chizi123.db.tar.xz x86_64/Chizi123.db
+cp Chizi123.files.tar.xz x86_64/Chizi123.files
 git add x86_64
-git commit -m "'$(date +%d/%m/%y)'"
+git commit -m "'$(date +%d/%m/%y-%H:%M)'"
 git push

--
Gitblit v1.9.3