Skip to content

Commit

Permalink
(codelite) Fix version scraping
Browse files Browse the repository at this point in the history
  • Loading branch information
brogers5 committed Mar 17, 2023
1 parent 246d53b commit 1c84a73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion automatic/codelite/update.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function global:au_GetLatest {

$re64 = 'windows_64$'
$url64 = $download_page.links | ? href -match $re64 | select -First 1 -Expand href { % Get-RedirectedUrl $_ 3>$null }
$version = $download_page.content -match "CodeLite ([\d\.]+) - Stable Release" | select -first 1 | % { $Matches[1] }
$version = $download_page.content -match "CodeLite ([\d\.]+) - Stable" | select -first 1 | % { $Matches[1] }

@{
URL64 = $url64
Expand Down

0 comments on commit 1c84a73

Please sign in to comment.