You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucenenet.apache.org by ni...@apache.org on 2017/07/13 18:36:00 UTC

[5/9] lucenenet git commit: build\build.ps1: For now, removing the lucene-cli and tests from the build (until a solution can be found for restore, which isn't working)

build\build.ps1: For now, removing the lucene-cli and tests from the build (until a solution can be found for restore, which isn't working)


Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/39441082
Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/39441082
Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/39441082

Branch: refs/heads/master
Commit: 3944108241a8046be74b926ff461dec39af92178
Parents: d6e8d69
Author: Shad Storhaug <sh...@shadstorhaug.com>
Authored: Fri Jul 14 00:11:13 2017 +0700
Committer: Shad Storhaug <sh...@shadstorhaug.com>
Committed: Fri Jul 14 00:11:13 2017 +0700

----------------------------------------------------------------------
 build/build.ps1 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucenenet/blob/39441082/build/build.ps1
----------------------------------------------------------------------
diff --git a/build/build.ps1 b/build/build.ps1
index 578c216..565f6aa 100644
--- a/build/build.ps1
+++ b/build/build.ps1
@@ -113,7 +113,7 @@ task Restore -description "This task restores the dependencies" {
 task Compile -depends Clean, Init -description "This task compiles the solution" {
 	try {
 		pushd $base_directory
-		$projects = Get-ChildItem -Path "project.json" -Recurse
+		$projects = Get-ChildItem -Path "project.json" -Recurse | ? { !$_.Directory.Name.Contains(".Cli") -and !$_.Directory.Name.Contains("lucene-cli") }
 		popd
 
 		Backup-Files $projects