From 2ee8d29d22bcb1c350ab59d71b0aee548489bc9c Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Tue, 21 Oct 2008 14:29:38 +0200 Subject: Prevent warning about directory already existing. --- source4/selftest/tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source4/selftest/tests.sh b/source4/selftest/tests.sh index 42bc8141c6..49e8c2ef5d 100755 --- a/source4/selftest/tests.sh +++ b/source4/selftest/tests.sh @@ -61,7 +61,7 @@ samba4bindir=$samba4srcdir/bin prefix_abs="$SELFTEST_PREFIX/s4client" -mkdir "$prefix_abs" +test -d "$prefix_abs" || mkdir "$prefix_abs" conffile="$SELFTEST_CONFFILE" TORTURE_OPTIONS="" -- cgit