summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authormapk0y2023-06-30 15:49:44 +0900
committermapk0y2023-06-30 15:49:44 +0900
commit345c7b385422aa1ffd479946850afd92479a92b4 (patch)
treeffc588d35a0e459d8a6718306cfbc8f1d207924f
parentc7906028f30d72212782a5d947e78efa940043df (diff)
downloadaur-345c7b385422aa1ffd479946850afd92479a92b4.tar.gz
Fix zsh completions path
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 69616f424078..5ceeaa3abb75 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = cfn-guard
pkgdesc = Guard offers a policy-as-code domain-specific language (DSL) to write rules and validate JSON- and YAML-formatted data such as CloudFormation Templates, K8s configurations, and Terraform JSON plans/configurations against those rules.
pkgver = 3.0.0
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/aws-cloudformation/cloudformation-guard
arch = x86_64
license = Apache
diff --git a/PKGBUILD b/PKGBUILD
index 4965ab751a99..32a791e2cc01 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname='cfn-guard'
pkgver=3.0.0
-pkgrel=1
+pkgrel=2
pkgdesc='Guard offers a policy-as-code domain-specific language (DSL) to write rules and validate JSON- and YAML-formatted data such as CloudFormation Templates, K8s configurations, and Terraform JSON plans/configurations against those rules.'
url='https://github.com/aws-cloudformation/cloudformation-guard'
license=('Apache')
@@ -13,7 +13,7 @@ source=("${url}/releases/download/${pkgver}/${pkgname}-v3-ubuntu-latest.tar.gz")
sha256sums=('6aa93074ce470782c388ffbcf391981ea3c2f806c41e4dce1a63c9415f7e9c2b')
build() {
- ${srcdir}/cfn-guard-v3-ubuntu-latest/cfn-guard completions --shell='zsh' > _cfn-guard.zsh
+ ${srcdir}/cfn-guard-v3-ubuntu-latest/cfn-guard completions --shell='zsh' > cfn-guard.zsh
${srcdir}/cfn-guard-v3-ubuntu-latest/cfn-guard completions --shell='bash' > cfn-guard.bash
${srcdir}/cfn-guard-v3-ubuntu-latest/cfn-guard completions --shell='fish' > cfn-guard.fish
}