From: Martin Pool Date: Fri, 14 Dec 2001 05:27:42 +0000 (+0000) Subject: Perhaps Solaris sh wants us to explicitly exit 0, rather than just X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/5bc00efe427251be598ac9514b9a79c9a2fe7892 Perhaps Solaris sh wants us to explicitly exit 0, rather than just using the last return code? --- diff --git a/testsuite/symlink-ignore.test b/testsuite/symlink-ignore.test index 65ecaf29..47425f3d 100644 --- a/testsuite/symlink-ignore.test +++ b/testsuite/symlink-ignore.test @@ -22,5 +22,5 @@ build_symlinks || test_fail "failed to build symlinks" [ -e $todir/relative ] && test_fail "relative symlink was copied" [ -e $todir/absolute ] && test_fail "absolute symlink was copied" -true # last [] may have failed but if we get here then we've one +exit 0 # last [] may have failed but if we get here then we've one