summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaxwell Pray2019-09-17 20:42:03 -0400
committerMaxwell Pray2019-09-17 20:42:03 -0400
commit583efa5f6969e974db3d6796822fe46cafbe7fd6 (patch)
treed7b12804a717bb294a410a160a16fc49198ff83c
parent37e1e18cef2482560992e7009736d398408631cb (diff)
downloadaur-583efa5f6969e974db3d6796822fe46cafbe7fd6.tar.gz
Fix rbenv-vars.bash not being sourced with rbenv shims.
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index c1a8f3f9a5ff..bedcf715cca7 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = rbenv-vars
pkgdesc = An rbenv plugin that safely sets global and per-project environment variables.
pkgver = 1.2.0
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/rbenv/rbenv-vars
arch = any
license = MIT
diff --git a/PKGBUILD b/PKGBUILD
index a0445d0c15a6..60ae240c509d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=rbenv-vars
pkgver=1.2.0
-pkgrel=1
+pkgrel=2
pkgdesc='An rbenv plugin that safely sets global and per-project environment variables.'
arch=('any')
url='https://github.com/rbenv/rbenv-vars'
@@ -14,5 +14,5 @@ package() {
cd "$srcdir/rbenv-vars-1.2.0"
install -Dm 755 bin/rbenv-vars "$pkgdir/usr/lib/rbenv/libexec/rbenv-vars"
- install -Dm 644 etc/rbenv.d/exec/rbenv-vars.bash "$pkgdir/usr/lib/rbenv/completions/rbenv-vars.bash"
+ install -Dm 644 etc/rbenv.d/exec/rbenv-vars.bash "$pkgdir/usr/lib/rbenv/hooks/exec/rbenv-vars.bash"
}