summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Whitwell2020-02-15 21:34:25 +0000
committerTom Whitwell2020-02-15 21:35:54 +0000
commitb0d534c24ebde07d2b11a71f7fcb515cf79fd151 (patch)
treed6e52b712db7e452085687654ec1e0e9c8cb1117
parent59f5c2cbb2382d80b1efa1c474b5c355f4e73b43 (diff)
downloadaur-b0d534c24ebde07d2b11a71f7fcb515cf79fd151.tar.gz
Fix flub of zsh / bash completion directories
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD6
2 files changed, 4 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 9485cc240883..03d564fb7c0c 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = aws-vault-git
pkgdesc = A vault for securely storing and accessing AWS credentials in development environments
pkgver = 5.3.0
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/99designs/aws-vault
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index 078751d9c591..74c5e04e77bf 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Tom Whitwell <tom@whi.tw>
pkgname=aws-vault-git
pkgver=5.3.0
-pkgrel=1
+pkgrel=2
pkgdesc="A vault for securely storing and accessing AWS credentials in development environments"
arch=('i686' 'x86_64')
url="https://github.com/99designs/aws-vault"
@@ -55,8 +55,8 @@ package() {
msg2 'completion files'
pushd "${srcdir}/${pkgname}" >/dev/null
{
- install -Dm644 "completions/bash/aws-vault" "${pkgdir}/usr/share/zsh/site-functions/aws-vault"
- install -Dm644 "completions/zsh/_aws-vault" "${pkgdir}/usr/share/bash-completion/completions/_aws-vault"
+ install -Dm644 "completions/bash/aws-vault" "${pkgdir}/usr/share/bash-completion/completions/aws-vault"
+ install -Dm644 "completions/zsh/_aws-vault" "${pkgdir}/usr/share/zsh/site-functions/_aws-vault"
}
popd >/dev/null
}