From 944bd2abcde0b42faf335ea7fcdf7e295fb99582 Mon Sep 17 00:00:00 2001 From: Carson McManus Date: Sun, 12 Jun 2022 10:24:55 -0400 Subject: [PATCH] remove aur updater from full release script --- scripts/full-release.sh | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/scripts/full-release.sh b/scripts/full-release.sh index 1e62f28..e63eeab 100755 --- a/scripts/full-release.sh +++ b/scripts/full-release.sh @@ -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 ..