summaryrefslogtreecommitdiff
path: root/wrapper/rvs.sh
diff options
context:
space:
mode:
Diffstat (limited to 'wrapper/rvs.sh')
-rw-r--r--wrapper/rvs.sh7
1 files changed, 4 insertions, 3 deletions
diff --git a/wrapper/rvs.sh b/wrapper/rvs.sh
index 6f4dbbb..a515f2d 100644
--- a/wrapper/rvs.sh
+++ b/wrapper/rvs.sh
@@ -1,6 +1,6 @@
#!@SHELL@
name='@name@'
-ver='0.8c'
+ver='0.8r61'
# Copyright (C) 2009 Luke Shumaker
#
# This file is part of rvs.
@@ -94,9 +94,10 @@ case "$com" in
'init') _init; exit $?;;
'install') shift; _install $@; exit $?;;
'uninstall') shift; _uninstall $@; exit $?;;
- *) repo=`_repo`
+ *) REPO=`_repo`
if [ "$?" = '0' ]; then
- "$libexecdir/runcom" $@ < $repo/plugins
+ export RVS libexecdir REPO
+ "$libexecdir/runcom" $@ < $REPO/plugins
exit $?
else
_error "cannot find an existing repository"