From: Rob Browning Date: Sat, 21 Mar 2015 20:19:52 +0000 (-0500) Subject: Clean up sampledata/abs-symlink X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=4376053aa2247cf358ec0f8ec0c6ffa16321d892;p=packages%2Fb%2Fbup.git Clean up sampledata/abs-symlink Signed-off-by: Rob Browning Tested-by: Rob Browning --- diff --git a/t/configure-sampledata b/t/configure-sampledata index 1b61ddc..d884727 100755 --- a/t/configure-sampledata +++ b/t/configure-sampledata @@ -28,7 +28,9 @@ case "$1" in # test -e is false for dangling symlinks. if test -h b -o -e b; then rm b || exit $?; fi if test -h c -o -e c; then rm c || exit $?; fi - if test -h etc -o -e etc; then rm etc || exit $?; fi + if test -h abs-symlink -o -e abs-symlink; then + rm abs-symlink || exit $? + fi ) ;; *)