projects
/
feisty_meow.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e1beec9
)
less noisy now, also seems to work.
author
Fred T. Hamster
<fred@zooty.koeritz.com>
Sat, 14 Jan 2012 04:35:34 +0000
(20:35 -0800)
committer
Fred T. Hamster
<fred@zooty.koeritz.com>
Sat, 14 Jan 2012 04:35:34 +0000
(20:35 -0800)
scripts/rev_control/checkin.sh
patch
|
blob
|
history
diff --git
a/scripts/rev_control/checkin.sh
b/scripts/rev_control/checkin.sh
index b81c85e6639b962eefa1312edaaf99e168826fde..54b26e8a10b0003a025c2889e4234515b45b07e6 100644
(file)
--- a/
scripts/rev_control/checkin.sh
+++ b/
scripts/rev_control/checkin.sh
@@
-9,8
+9,6
@@
source "$SHELLDIR/rev_control/rev_control.sh"
function do_checkin()
{
local directory="$1"; shift
-echo dir is $directory
-echo cur dir is $(pwd)
if [ -d "CVS" ]; then
# this appears to be cvs.
pushd "$directory/.." &>/dev/null
@@
-33,9
+31,8
@@
function checkin_list {
if [ ! -d "$j" ]; then continue; fi
pushd $j &>/dev/null
- folder=$j
- echo "checking in '$folder'..."
- do_checkin $folder
+ echo "checking in '$j'..."
+ do_checkin $j
popd &>/dev/null
done
done