From c08e72dd3c706316c0dbaecc5236bf09dcbe7c6c Mon Sep 17 00:00:00 2001 From: adilger Date: Thu, 29 Aug 2002 16:33:13 +0000 Subject: [PATCH] Handle the case where the XML file has not yet been created. --- lustre/tests/llmount.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lustre/tests/llmount.sh b/lustre/tests/llmount.sh index e5b5242..3ee4a534 100755 --- a/lustre/tests/llmount.sh +++ b/lustre/tests/llmount.sh @@ -7,7 +7,7 @@ NAME=local config=$NAME.xml mkconfig=./$NAME.sh -if [ $mkconfig -nt $local.xml ]; then +if [ ! -f $local.xml -o $mkconfig -nt $local.xml ]; then $mkconfig $config || exit 1 fi -- 1.8.3.1