From 48a8a89efe7ebcf280d62e4c221e7362c82c42e7 Mon Sep 17 00:00:00 2001
From: Chizi123 <joelgrun@gmail.com>
Date: Mon, 10 Jun 2019 10:56:38 +0000
Subject: [PATCH] Working with a chroot environment

---
 build.sh |   18 +++++++++++++++---
 1 files changed, 15 insertions(+), 3 deletions(-)

diff --git a/build.sh b/build.sh
index ea29539..6b2728d 100644
--- a/build.sh
+++ b/build.sh
@@ -34,13 +34,25 @@
     return 0
 }
 
-for d in 'emacs-git'
+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" ] || [ "$d" = "." ]; then
+		continue
+	fi
 	cd $d
 	git pull
-	makepkg
+	makepkg -s --noconfirm
 	latest=$(newest_matching_file '*.pkg.tar.xz')
 	cd ..
-	repo-add ./repo.db.tar.xz $d/$latest
+	rsync $d/$latest 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-%H:%M)'"
+git push

--
Gitblit v1.9.3