remove aur updater from full release script

This commit is contained in:
Carson McManus 2022-06-12 10:24:55 -04:00
parent bc0ec74596
commit 944bd2abcd

View file

@ -81,17 +81,3 @@ if [[ $DRY_RUN == false ]]; then
fi
gh release create "$VERSION" --title "$VERSION" --draft "$BIN_PATH" "./steamguard-cli_$RAW_VERSION-0.deb"
fi
# update PKGBUILD for AUR
if [[ -d "aur" ]]; then
rm -rf aur
fi
git clone ssh://aur@aur.archlinux.org/steamguard-cli-git.git aur
cp PKGBUILD aur/PKGBUILD
cd aur
git commit -m "release $VERSION" PKGBUILD
if [[ $DRY_RUN == false ]]; then
git push
rm -rf aur
fi
cd ..