From 4315b8593150cbd1f90669ffc4e5a10d77b7abfd Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Mon, 20 Jul 2009 18:17:23 -0400 Subject: 0.6.3 -- begin reworking $$libdir$$/lib --- src/rvs.sh | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'src/rvs.sh') diff --git a/src/rvs.sh b/src/rvs.sh index 5059dca..4cd8eb5 100644 --- a/src/rvs.sh +++ b/src/rvs.sh @@ -1,7 +1,7 @@ #!$$SHELL$$ # abomination module:rvs name='rvs' -ver='0.5.10' +ver='0.6.3' usage='COMMAND [OPTIONS]' # Copyright (C) 2009 Luke Shumaker # This program is distributed in the hope that it will be useful, @@ -11,21 +11,20 @@ usage='COMMAND [OPTIONS]' # # Originally written by Luke Shumaker . -RVSDIR='$$libdir$$' +export RVSDIR='$$libdir$$' source "$RVSDIR/lib/stdio" #source "$RVSDIR/lib/rvsdb" # START OPTION HANDLING # com=$1; -# END OPTION HANDLING # +# END OPTION HANDLING # case "$com" in + # -d is left for back-compat, should be removed by the end of 0.6.3 -d) echo "$RVSDIR";; '') error 'no command specified';; *) if [ -f "$RVSDIR/$com" ]; then - export TMPDIR="$repo/tmp" - #echo "$@" >> $repo/log - $RVSDIR/$@ + $SHELL $RVSDIR/$@ else error "unrecognized command \`$com'" fi -- cgit v1.2.3-2-g168b