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:
authorTherzok <teromario@yahoo.com>2013-10-24 19:35:28 +0400
committerTherzok <teromario@yahoo.com>2013-10-24 19:35:28 +0400
commitc4a1ce1241903dc8d451945a3b677a86271d354c (patch)
tree75de1435749177388a3c74baf6ccfa248ba0b465 /main/wintest.sh
parent1dae2e7467f01ea8272758313eae3dd088e86f21 (diff)
[Wintest.sh] Let's glob better now, shall we?
Diffstat (limited to 'main/wintest.sh')
-rw-r--r--main/wintest.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/wintest.sh b/main/wintest.sh
index d4b8be9fd2..2c03f8acd1 100644
--- a/main/wintest.sh
+++ b/main/wintest.sh
@@ -4,7 +4,7 @@ if [ $# -lt 1 ]; then
build/bin/mdtool run-md-tests external/nrefactory/bin/Debug/ICSharpCode.NRefactory.Tests.dll
else
for arg in $@; do
- if [[ $arg == "ICSharpCode.NRefactory.Tests.dll" ]]; then
+ if [[ $arg == *ICSharpCode.NRefactory.Tests.dll ]]; then
arg="external/nrefactory/bin/Debug/ICSharpCode.NRefactory.Tests.dll"
elif [[ $arg != build/tests/* ]]; then
arg="build/tests/$arg"