Fixed a problem with the revision (-r) parameter conditional test.
This commit is contained in:
parent
dc58603161
commit
c96fd5670a
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ pv=
|
||||||
|
|
||||||
trap 'rm -f $TEMP' 0 1 2 15
|
trap 'rm -f $TEMP' 0 1 2 15
|
||||||
|
|
||||||
if [ $# -eq 3 -a $2 = "-r" ]; then
|
if [ $# -eq 3 ] && [ $2 = "-r" ]; then
|
||||||
pv="-r $3"
|
pv="-r $3"
|
||||||
fi
|
fi
|
||||||
svn cat $filename $pv > $TEMP
|
svn cat $filename $pv > $TEMP
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue