Skip to content

Commit 8bcde63

Browse files
author
maxim
committed
Bump version do 2024.12 and change version parsing script
1 parent 9a4b64e commit 8bcde63

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

bucket/sysinternals-aarch64.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "2024.7.23",
2+
"version": "2024.12.16",
33
"description": "A set of utilities to manage, diagnose, troubleshoot, and monitor a Windows environment.",
44
"homepage": "https://docs.microsoft.com/en-us/sysinternals/",
55
"license": {
@@ -8,10 +8,10 @@
88
},
99
"checkver": {
1010
"script": [
11-
"$resp = Invoke-WebRequest 'https://techcommunity.microsoft.com/plugins/custom/microsoft/o365/custom-blog-rss?board=Sysinternals-Blog'",
12-
"$resp.Content -match '(\\d{1,2}) (\\w{3}) (\\d{4})'",
13-
"$year = $Matches[3]; $month = $Matches[2]; $day = $Matches[1] ",
14-
"$months = @{'Jan'='1';'Feb'='2';'Mar'='3';'Apr'='4';'May'='5';'Jun'='6';'Jul'='7';'Aug'='8';'Sep'='9';'Oct'='10';'Nov'='11';'Dec'='12'}",
11+
"$resp = Invoke-WebRequest 'https://learn.microsoft.com/en-us/sysinternals/downloads/sysinternals-suite'",
12+
"$resp.Content -match 'Updated: (\\w+) (\\d{1,2}), (\\d{4})</p>'",
13+
"$year = $Matches[3]; $month = $Matches[1]; $day = $Matches[2] ",
14+
"$months = @{'January'='1';'February'='2';'March'='3';'April'='4';'May'='5';'June'='6';'Jule'='7';'August'='8';'September'='9';'October'='10';'November'='11';'December'='12'}",
1515
"$month = $months.$month",
1616
"Write-Output $year $month $day"
1717
],

0 commit comments

Comments
 (0)