Fixed a problem with the revision (-r) parameter conditional test.

This commit is contained in:
Erik C. Thauvin 2011-06-23 07:09:28 +00:00
parent dc58603161
commit c96fd5670a

View file

@ -41,7 +41,7 @@ pv=
trap 'rm -f $TEMP' 0 1 2 15
if [ $# -eq 3 -a $2 = "-r" ]; then
if [ $# -eq 3 ] && [ $2 = "-r" ]; then
pv="-r $3"
fi
svn cat $filename $pv > $TEMP