diff options
author | 2014-01-20 00:00:30 +0000 | |
---|---|---|
committer | 2014-01-20 00:00:30 +0000 | |
commit | 1a896ddcdac684f0b12400e1e31d80ec3faa058a (patch) | |
tree | a8d9d87c04d5102d29c85124386c71ffc07f41c0 | |
parent | Fix .Ar macro abuse; found with mandocdb(8). (diff) | |
download | wireguard-openbsd-1a896ddcdac684f0b12400e1e31d80ec3faa058a.tar.xz wireguard-openbsd-1a896ddcdac684f0b12400e1e31d80ec3faa058a.zip |
append to rather than truncating the log file
-rw-r--r-- | regress/usr.bin/ssh/sftp-chroot.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/usr.bin/ssh/sftp-chroot.sh b/regress/usr.bin/ssh/sftp-chroot.sh index 6743cc9f446..03e1ce21120 100644 --- a/regress/usr.bin/ssh/sftp-chroot.sh +++ b/regress/usr.bin/ssh/sftp-chroot.sh @@ -1,4 +1,4 @@ -# $OpenBSD: sftp-chroot.sh,v 1.3 2014/01/19 23:43:02 dtucker Exp $ +# $OpenBSD: sftp-chroot.sh,v 1.4 2014/01/20 00:00:30 dtucker Exp $ # Placed in the Public Domain. tid="sftp in chroot" @@ -18,7 +18,7 @@ start_sshd -oChrootDirectory=$CHROOT -oForceCommand="internal-sftp -d /" verbose "test $tid: get" ${SFTP} -S "$SSH" -F $OBJ/ssh_config host:/${FILENAME} $COPY \ - >$TEST_REGRESS_LOGFILE 2>&1 || \ + >>$TEST_REGRESS_LOGFILE 2>&1 || \ fatal "Fetch ${FILENAME} failed" cmp $PRIVDATA $COPY || fail "$PRIVDATA $COPY differ" |