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 <[email protected]> Authored: Fri Jul 14 00:11:13 2017 +0700 Committer: Shad Storhaug <[email protected]> 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
