1
0
Fork 0
mirror of https://github.com/SinTan1729/random.git synced 2024-12-25 20:58:37 -06:00

fix: Skip if AUR directory is missing

This commit is contained in:
Sayantan Santra 2024-10-22 18:43:52 -05:00
parent 11a95a97e1
commit 60400b6495
Signed by: SinTan1729
GPG key ID: 0538DD402EA50898

View file

@ -19,17 +19,19 @@ VERS="$2"
echo "Updating AUR..."
cd "$GITDIR/AUR"
[ -d "$1" ] && PKG="$1" || PKG="$1-bin"
if [ -d "$1" ]; then # Skip if the directory is missing
cd "$PKG"
sed -i -E "s/pkgver=[0-9\.]+/pkgver=$VERS/" PKGBUILD
updpkgsums
makepkg --printsrcinfo >.SRCINFO
# Remove downloaded files
ls | grep -v PKGBUILD | xargs -r -I {} rm "{}"
git add .
git commit -m "Bumped $PKG version to $VERS"
git push
else
echo "AUR directory is missing. Skipping this step."
fi
# Update the GitHub backup repo as well
echo "Updating AUR backup repo..."