Skip to content

Commit

Permalink
airgeddon: bump to 11.40 (#4412)
Browse files Browse the repository at this point in the history
  • Loading branch information
noraj authored Dec 1, 2024
1 parent b3bfd0b commit 020a8a5
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions packages/airgeddon/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# See COPYING for license details.

pkgname=airgeddon
pkgver=v11.31.r0.g7335109
pkgver=v11.40.r0.g48b1bb5
pkgrel=1
epoch=1
pkgdesc='Multi-use bash script for Linux systems to audit wireless networks.'
Expand All @@ -25,7 +25,12 @@ sha512sums=('SKIP')
pkgver() {
cd $pkgname

git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
( set -o pipefail
git describe --long --tags --abbrev=7 2>/dev/null |
sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
printf "%s.%s" "$(git rev-list --count HEAD)" \
"$(git rev-parse --short=7 HEAD)"
)
}

prepare() {
Expand Down

0 comments on commit 020a8a5

Please sign in to comment.