diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2009-09-13 21:09:09 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-06-26 00:30:15 -0600 |
commit | 43ffb5f89080e9d78e999045c41c94beb18c9c05 (patch) | |
tree | a410ee6d040908c72a398a9d82cca397b243eeea | |
parent | 41d5d2834b61b1cf23b8cc4ec86348c57ace34fe (diff) |
haha, I'm a dumb shit,
$(bindir)/rvs wasn't passing the command to $(libexecdir)/rvs/runcom
-rw-r--r-- | wrapper/rvs.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/wrapper/rvs.sh b/wrapper/rvs.sh index 4d87170..6f4dbbb 100644 --- a/wrapper/rvs.sh +++ b/wrapper/rvs.sh @@ -23,7 +23,7 @@ RVS="$0" #RVS="@rvs@" libexecdir="@libexecdir@/$name" _error() { - echo "$name: $1" >> /dev/stderr + echo "$RVS: $1" >> /dev/stderr exit 1 } @@ -96,7 +96,6 @@ case "$com" in 'uninstall') shift; _uninstall $@; exit $?;; *) repo=`_repo` if [ "$?" = '0' ]; then - shift "$libexecdir/runcom" $@ < $repo/plugins exit $? else |