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-09-03 02:28:09 +0400
committerTherzok <teromario@yahoo.com>2013-09-03 14:20:45 +0400
commite8f3d133d0a15a254b67185bb0cf00d5e9395c76 (patch)
treeb22a7211c4185268cbb9e1c615cb044471e78795 /main/wintest.sh
parent6de145a826bc58674786f1fd500b2de3a9719d0c (diff)
[Windows] Fix Windows shell scripts.
Cygwin doesn't like \r\n. Append /cygdrive/ to winbuild.sh.
Diffstat (limited to 'main/wintest.sh')
-rw-r--r--main/wintest.sh16
1 files changed, 8 insertions, 8 deletions
diff --git a/main/wintest.sh b/main/wintest.sh
index 70702886c2..208ec11ec9 100644
--- a/main/wintest.sh
+++ b/main/wintest.sh
@@ -1,8 +1,8 @@
-if [ $# -lt 1 ]; then
- build/bin/mdtool run-md-tests build/tests/UnitTests.dll
- build/bin/mdtool run-md-tests build/tests/*.Tests.dll
-else
- for arg in $@; do
- build/bin/mdtool run-md-tests $arg
- done
-fi
+if [ $# -lt 1 ]; then
+ build/bin/mdtool run-md-tests build/tests/UnitTests.dll
+ build/bin/mdtool run-md-tests build/tests/*.Tests.dll
+else
+ for arg in $@; do
+ build/bin/mdtool run-md-tests $arg
+ done
+fi