This is an automated email from the ASF dual-hosted git repository.

ptupitsyn pushed a commit to branch ignite-2.8-dotnet-build-fix
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/ignite-2.8-dotnet-build-fix by 
this push:
     new 3d4f125  .NET: Fix build script - exclude optional jars
3d4f125 is described below

commit 3d4f125bd729249cf04b963418fbf0bb66f8278b
Author: Pavel Tupitsyn <[email protected]>
AuthorDate: Wed Feb 26 17:13:24 2020 +0300

    .NET: Fix build script - exclude optional jars
---
 modules/platforms/dotnet/build.ps1 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/platforms/dotnet/build.ps1 
b/modules/platforms/dotnet/build.ps1
index e4f464c..3965dca 100644
--- a/modules/platforms/dotnet/build.ps1
+++ b/modules/platforms/dotnet/build.ps1
@@ -162,7 +162,7 @@ Make-Dir($libsDir)
 Get-ChildItem $jarDirs.Split(',') *.jar -recurse `
    -include 
"ignite-core*","ignite-indexing*","ignite-shmem*","ignite-spring*","lucene*","h2*","cache-api*","commons-*","spring*"
 `
    -exclude "*-sources*","*-javadoc*","*-tests*" `
-   | ? { $_.FullName -inotmatch '/optional/' } `
+   | ? { $_.FullName -inotmatch 'optional' } `
    | % { Copy-Item -Force $_ $libsDir }
    
 # Restore directory

Reply via email to