From f255992d1063d6e74f24f5ce293bfd67b9a1b4aa Mon Sep 17 00:00:00 2001 From: Sebastian Hugentobler Date: Sun, 17 Sep 2023 10:00:32 +0200 Subject: [PATCH] always sign package --- PKGBUILD | 4 ++-- aur-update | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index e9dda1d..80c1c85 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Sebastian Hugentobler pkgname=aur-update -pkgver=0.1.0 +pkgver=0.1.1 pkgrel=1 pkgdesc="Simple updater for local aur repositories." arch=("any") @@ -11,7 +11,7 @@ depends=("git" "base-devel") source=( "aur-update" ) -sha256sums=("f4e09dfe9753a26b90df2f8ba463f2856b2cd82268c5f13d8551391bc03f8c79") +sha256sums=("81ca6091220a622a4d240b473093d9c5891d04c536861efbc38ec05bd5f1a2d4") package() { cd "$srcdir/" diff --git a/aur-update b/aur-update index e119b65..76beb5e 100755 --- a/aur-update +++ b/aur-update @@ -47,7 +47,7 @@ update() { if [ -d ".git" ]; then git_status="$(git pull)" if [ "$git_status" != "Already up to date." ]; then - makepkg -sirc --noconfirm + makepkg -sirc --sign --noconfirm fi fi cd ..