Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'main/wintest.sh')
-rw-r--r--main/wintest.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/main/wintest.sh b/main/wintest.sh
index 2c03f8acd1..48d9c5b78a 100644
--- a/main/wintest.sh
+++ b/main/wintest.sh
@@ -10,6 +10,8 @@ else
arg="build/tests/$arg"
fi
- (build/bin/mdtool run-md-tests $arg) || exit $?
+ if [ -f $arg ]; then
+ (build/bin/mdtool run-md-tests $arg) || exit $?
+ fi
done
fi