diff options
author | Tom Whitwell | 2020-02-15 21:34:25 +0000 |
---|---|---|
committer | Tom Whitwell | 2020-02-15 21:35:54 +0000 |
commit | b0d534c24ebde07d2b11a71f7fcb515cf79fd151 (patch) | |
tree | d6e52b712db7e452085687654ec1e0e9c8cb1117 | |
parent | 59f5c2cbb2382d80b1efa1c474b5c355f4e73b43 (diff) | |
download | aur-b0d534c24ebde07d2b11a71f7fcb515cf79fd151.tar.gz |
Fix flub of zsh / bash completion directories
-rw-r--r-- | .SRCINFO | 2 | ||||
-rw-r--r-- | PKGBUILD | 6 |
2 files changed, 4 insertions, 4 deletions
@@ -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 @@ -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 } |