From aa41adac18fe529381fefa491ce81bbd61007d03 Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Sat, 28 Jan 2012 17:45:43 -0500 Subject: [PATCH] trying simple, unified behavior for cvs too. --- scripts/rev_control/checkin.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/scripts/rev_control/checkin.sh b/scripts/rev_control/checkin.sh index 4a747e76..18b459a0 100644 --- a/scripts/rev_control/checkin.sh +++ b/scripts/rev_control/checkin.sh @@ -11,9 +11,10 @@ function do_checkin() local directory="$1"; shift if [ -d "CVS" ]; then # this appears to be cvs. - pushd "$directory/.." &>/dev/null - cvs ci "$directory" - popd &>/dev/null +# pushd "$directory/.." &>/dev/null + cvs ci . +###"$directory" +# popd &>/dev/null elif [ -d ".svn" ]; then svn ci . elif [ -d ".git" ]; then -- 2.34.1