From f4965ab2884f2c1f98aad9b9a99645dfdb04194b Mon Sep 17 00:00:00 2001 From: Debucquoy Anthony Date: Wed, 12 Apr 2023 02:10:53 +0200 Subject: [PATCH] fixup! script for making mirror --- update.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/update.sh b/update.sh index 4b98c33..5202831 100755 --- a/update.sh +++ b/update.sh @@ -1,5 +1,7 @@ #!/usr/bin/sh +git pull + mkdir -p 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 do cd $d - makepkg + makepkg -f done cd $PKGDEST