Skip to content

Commit

Permalink
(gitkraken) fix update script
Browse files Browse the repository at this point in the history
  • Loading branch information
mkevenaar committed Jan 5, 2025
1 parent ea2bdf0 commit 55adecf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions automatic/gitkraken/update.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ function global:au_SearchReplace {
function global:au_GetLatest {
$download_page = Invoke-WebRequest -Uri $releases -UseBasicParsing

$re = 'Latest release: (.+)</span>'
$re = 'Latest release: (.+)</h5>'
$version = ([regex]::Match($download_page.content, $re)).Captures.Groups[1].value

$url64 = 'https://release.axocdn.com/windows/GitKrakenSetup.exe'
$url64 = 'https://release.gitkraken.com/windows/GitKrakenSetup.exe'

return @{
URL64 = $url64
Version = $version
}
}

update 64
update -ChecksumFor 64

0 comments on commit 55adecf

Please sign in to comment.