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/20 17:19:33 UTC

[ignite] branch master updated: IGNITE-12481 .NET: Fix verify-nuget.ps1 for multi-digit versions

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 6facbc7  IGNITE-12481 .NET: Fix verify-nuget.ps1 for multi-digit versions
6facbc7 is described below

commit 6facbc7ffe25ee62727aed84cf3fd9e97cb35984
Author: Pavel <pt...@apache.org>
AuthorDate: Fri Dec 20 20:19:15 2019 +0300

    IGNITE-12481 .NET: Fix verify-nuget.ps1 for multi-digit versions
---
 modules/platforms/dotnet/release/verify-nuget.ps1 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/platforms/dotnet/release/verify-nuget.ps1 b/modules/platforms/dotnet/release/verify-nuget.ps1
index bf8670c..fdde984 100644
--- a/modules/platforms/dotnet/release/verify-nuget.ps1
+++ b/modules/platforms/dotnet/release/verify-nuget.ps1
@@ -72,7 +72,7 @@ if ($LastExitCode -ne 0) {
 
 
 $packages | % {
-    $packageId = $_.Name -replace '(.*?)\.\d\.\d\.\d\.nupkg', '$1'
+    $packageId = $_.Name -replace '(.*?)\.\d+\.\d+\.\d+\.nupkg', '$1'
     dotnet add package $packageId -s $dir
 
     if ($LastExitCode -ne 0) {