You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by pt...@apache.org on 2019/12/22 20:39:26 UTC

[ignite] branch master updated: .NET: Fix Maven call in build.ps1

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

ptupitsyn pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/master by this push:
     new 4012749  .NET: Fix Maven call in build.ps1
4012749 is described below

commit 4012749893c3a0d2b7748fc1c1fbdbbda8c93e4c
Author: Pavel <pt...@apache.org>
AuthorDate: Sun Dec 22 23:39:09 2019 +0300

    .NET: Fix Maven call in build.ps1
---
 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 3710d94..d727042 100644
--- a/modules/platforms/dotnet/build.ps1
+++ b/modules/platforms/dotnet/build.ps1
@@ -143,7 +143,7 @@ if (!$skipJava) {
 
     # Install Maven Wrapper
     Exec "$mv --% -N io.takari:maven:wrapper -Dmaven=3.5.2"
-    $mv = If ($IsLinux) { "./mvnw" } else { "mvnw.cmd" }
+    $mv = If ($IsLinux) { "./mvnw" } else { ".\mvnw.cmd" }
 
     # Run Maven
     echo "Starting Java (Maven) build..."