(佐々木@PSEG1)CLS化スクリプトの修正 - すでにCLS化されている場合に再CLS化しないように変更

git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@2740 b08762b0-b915-fc4b-9d8c-17b2551a87ff
This commit is contained in:
(no author) 2009-02-06 00:03:52 +00:00
parent 5cf3510412
commit 8776553814

View File

@ -31,8 +31,13 @@ do_cls() {
for target in `find $tmp -name v* -type d | sort -t / -n -k 3.2`
do
cp -rp $target $1
echo "$target"
genLic $1
t=`echo "$target" | cut -c 5-`
if [ -f $t/*.cls ]; then
echo "$t:Already cls processed"
else
genLic $1
fi
# genLic $1
done
}
@ -43,5 +48,4 @@ do
do_cls $name
done
rm -rf tmp