Skip to content

Commit

Permalink
aerospace: fix audit
Browse files Browse the repository at this point in the history
  • Loading branch information
ivaquero committed Sep 21, 2024
1 parent 107495c commit 0d5f6a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Casks/a/aerospace.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
livecheck do
url "https://github.com/nikitabobko/AeroSpace/tags"
strategy :page_match do |page|
match = page.match(%r{href=.*?v(\d+(\.\d+)+(-Beta)?)}i)
match = page.match(/href=.*?v(\d+(\.\d+)+(-Beta)?)/i)
next if match.blank?

"#{match[1]}"
(match[1]).to_s
end
end

Expand Down

0 comments on commit 0d5f6a2

Please sign in to comment.