diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2010-04-02 20:16:08 -0600 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-06-26 00:30:20 -0600 |
commit | 5cbc6057d2a2c7e00b466eb987acf04d68e1c18c (patch) | |
tree | 46b038d517d769f013d0e26a90a8db80303797b8 /wrapper | |
parent | 82a796c7820f3c3da49d4bfa4b83d4e5d0a36c9e (diff) |
add a tree plugin to rvs, but I made a ton of other changes to get
things working and facilitate this
Diffstat (limited to 'wrapper')
-rw-r--r-- | wrapper/rvs.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/wrapper/rvs.sh b/wrapper/rvs.sh index e2e94e6..c2e3594 100644 --- a/wrapper/rvs.sh +++ b/wrapper/rvs.sh @@ -56,6 +56,8 @@ _repo() { _error "no $name repository found" fi cd "$owd" + else + echo "$REPO" fi } @@ -75,7 +77,7 @@ _runcom() { mkdir -p "$baseTMPDIR" export TMPDIR=`mktemp -d --tmpdir="$baseTMPDIR"` - if [ -z "RVS_LEVEL" ]; then + if [ -z "$RVS_LEVEL" ]; then export RVS_LEVEL=0; else export RVS_LEVEL=`expr $RVS_LEVEL + 1` |