fixup! script for making mirror

This commit is contained in:
Debucquoy Anthony 2023-04-12 02:10:53 +02:00
parent 045a7f13b9
commit f4965ab288
Signed by: tonitch
GPG Key ID: A78D6421F083D42E

View File

@ -1,5 +1,7 @@
#!/usr/bin/sh #!/usr/bin/sh
git pull
mkdir -p tonitch mkdir -p tonitch
export PKGDEST=$(pwd)/tonitch export PKGDEST=$(pwd)/tonitch
@ -8,7 +10,7 @@ packagelist=$(find . -maxdepth 1 -type d -printf '%P\n' | sed '/tonitch/d' | sed
for d in $packagelist for d in $packagelist
do do
cd $d cd $d
makepkg makepkg -f
done done
cd $PKGDEST cd $PKGDEST