summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authormapk0y2023-06-30 15:49:44 +0900
committermapk0y2023-06-30 15:49:44 +0900
commit345c7b385422aa1ffd479946850afd92479a92b4 (patch)
treeffc588d35a0e459d8a6718306cfbc8f1d207924f /PKGBUILD
parentc7906028f30d72212782a5d947e78efa940043df (diff)
downloadaur-345c7b385422aa1ffd479946850afd92479a92b4.tar.gz
Fix zsh completions path
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD4
1 files changed, 2 insertions, 2 deletions
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
}