diff options
author | Wayne Davison <wayned@samba.org> | 2003-01-21 19:27:11 +0000 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2003-01-21 19:27:11 +0000 |
commit | 1657be22a3bf3d0978100e81aa292128dc04a573 (patch) | |
tree | 004f131689fbac638f6d17b2dd50ede852aa4a41 /runtests.sh | |
parent | 3636b9ffaa0b3cbd1a67363da981b9851a11144f (diff) | |
download | rsync-1657be22a3bf3d0978100e81aa292128dc04a573.tar.gz rsync-1657be22a3bf3d0978100e81aa292128dc04a573.tar.bz2 rsync-1657be22a3bf3d0978100e81aa292128dc04a573.zip |
Separated a `cat "..."` command out from inside a double-quoted string
so that we don't run afoul of some shells quoting quirks. (As Brian
Poole suggested.)
Diffstat (limited to 'runtests.sh')
-rwxr-xr-x | runtests.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/runtests.sh b/runtests.sh index d2865ae3..bb0b34a6 100755 --- a/runtests.sh +++ b/runtests.sh @@ -230,7 +230,8 @@ do ;; 77) # backticks will fill the whole file onto one line, which is a feature - echo "SKIP $testbase (`cat \"$scratchdir/whyskipped\"`)" + whyskipped=`cat "$scratchdir/whyskipped"` + echo "SKIP $testbase ($whyskipped)" skipped=`expr $skipped + 1` maybe_discard_scratch ;; |