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 f6c1270 Fix optional jar exclude regex on Windows
f6c1270 is described below
commit f6c12706a3483808c2c1663af8bcbfc0ecf45c76
Author: Pavel Tupitsyn <[email protected]>
AuthorDate: Wed Feb 26 19:02:01 2020 +0300
Fix optional jar exclude regex on Windows
---
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 458199e..d68ba5b 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 [IO.Path]::PathSeparator + 'optional' +
[IO.Path]::PathSeparator } `
+ | ? { $_.FullName -inotmatch '[\\/]optional[\\/]' } `
| % { Copy-Item -Force $_ $libsDir }
# Restore directory