summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Wadley2020-09-25 16:13:26 -0400
committerTom Wadley2020-09-25 16:14:14 -0400
commit29c2ca13a8c3215406e0e3f6735df2ff26ad1d45 (patch)
treebb6941fca4f09438049426a54d002a7de8f86fe0
parentc234cb6b3a596e33e88b976988a1ad05eba0cf09 (diff)
downloadaur-29c2ca13a8c3215406e0e3f6735df2ff26ad1d45.tar.gz
Fix update.sh and .gitignore to allow for uncompressed packages from makepkg
-rw-r--r--.gitignore2
-rwxr-xr-xupdate.sh3
2 files changed, 2 insertions, 3 deletions
diff --git a/.gitignore b/.gitignore
index d9113786d882..575fb1eff0d0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,4 @@
-*.pkg.tar.xz
+*.pkg.tar*
pkg/
src/
*.zip
diff --git a/update.sh b/update.sh
index 2975ee8a3975..5241ba3c213c 100755
--- a/update.sh
+++ b/update.sh
@@ -16,8 +16,7 @@ updpkgsums
makepkg --printsrcinfo > .SRCINFO
git add .
git commit -m "Upgrade to v${VERSION}"
-makepkg
-sudo pacman -U nvm-${VERSION}-1-any.pkg.tar.xz
+makepkg -i
set +x