- (dtucker) [regress/scp.sh] Use portable-friendly $DIFFOPTs in new test.

This commit is contained in:
Darren Tucker 2004-12-07 11:26:15 +11:00
parent d028fea13a
commit 641b34c72b
2 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,6 @@
20041207
- (dtucker) [regress/scp.sh] Use portable-friendly $DIFFOPTs in new test.
20041206
- (dtucker) [TODO WARNING.RNG] Update to reflect current reality. ok djm@
- (dtucker) OpenBSD CVS Sync
@ -1920,4 +1923,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
$Id: ChangeLog,v 1.3598 2004/12/06 12:16:29 dtucker Exp $
$Id: ChangeLog,v 1.3599 2004/12/07 00:26:15 dtucker Exp $

View File

@ -73,7 +73,7 @@ if [ ! -z "$SUDO" ]; then
chmod 660 ${DIR2}/copy
$SUDO chown root ${DIR2}/copy
$SCP -p $scpopts somehost:${DIR}/\* ${DIR2} >/dev/null 2>&1
diff -rN ${DIR} ${DIR2} || fail "corrupted copy"
diff ${DIFFOPT} ${DIR} ${DIR2} || fail "corrupted copy"
$SUDO rm ${DIR2}/copy
fi