From: David Levine Date: Fri, 1 Feb 2013 21:08:32 +0000 (-0600) Subject: In setup_test(), create the Mail directory if it doesn't X-Git-Url: https://diplodocus.org/git/nmh/commitdiff_plain/b335ca6213f16ca76e2555b51c021d9ad8563a5e?hp=2125d3fe1bba870fb85e4f7d0ff3908b12c96ffc In setup_test(), create the Mail directory if it doesn't already exist. --- diff --git a/test/common.sh.in b/test/common.sh.in index 02846536..eb52af68 100644 --- a/test/common.sh.in +++ b/test/common.sh.in @@ -215,12 +215,7 @@ EOF cp "${MH_INST_DIR}${sysconfdir}/${f}" "${MH_TEST_DIR}/Mail" || exit 1 done - if [ -f $MH_INST_DIR/$prefix/bin/folder ]; then - : - else - echo 'installation not finished!' - sleep 10 - fi + [ -d ${MH_TEST_DIR}/Mail ] || mkdir ${MH_TEST_DIR}/Mail folder -create +inbox > /dev/null # create 10 basic messages for i in 1 2 3 4 5 6 7 8 9 10;