Repository: lucenenet Updated Branches: refs/heads/master f2fb70bbc -> 14c3e7b12
build.bat + build\build.ps1: Fixed bug in --test command Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/14c3e7b1 Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/14c3e7b1 Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/14c3e7b1 Branch: refs/heads/master Commit: 14c3e7b1262a62727b532ea22f093d7d99cb2311 Parents: f2fb70b Author: Shad Storhaug <[email protected]> Authored: Wed May 10 17:43:33 2017 +0700 Committer: Shad Storhaug <[email protected]> Committed: Wed May 10 17:43:33 2017 +0700 ---------------------------------------------------------------------- build.bat | 4 ++-- build/build.ps1 | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucenenet/blob/14c3e7b1/build.bat ---------------------------------------------------------------------- diff --git a/build.bat b/build.bat index 318c836..ad944aa 100644 --- a/build.bat +++ b/build.bat @@ -1,4 +1,4 @@ -@echo off +@echo off GOTO endcommentblock :: ----------------------------------------------------------------------------------- :: @@ -104,7 +104,7 @@ FOR %%a IN (%*) DO ( ) set test=!value:~0,6! - IF /I !test!==--test: ( + IF /I !test!==--test ( set runtests=true ) ) http://git-wip-us.apache.org/repos/asf/lucenenet/blob/14c3e7b1/build/build.ps1 ---------------------------------------------------------------------- diff --git a/build/build.ps1 b/build/build.ps1 index d0cd4e1..92e338a 100644 --- a/build/build.ps1 +++ b/build/build.ps1 @@ -402,7 +402,7 @@ FOR %%a IN (%*) DO ( ) set test=!value:~0,6! - IF /I !test!==--test: ( + IF /I !test!==--test ( set runtests=true ) )
