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 <[email protected]>
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) {