Skip to content

Commit

Permalink
Fix missing OpenBSD changelog opening strategy
Browse files Browse the repository at this point in the history
Fixes #1216
  • Loading branch information
hasufell committed Jan 18, 2025
1 parent d94ce2a commit 29a9d3b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib-tui/GHCup/Brick/Actions.hs
Original file line number Diff line number Diff line change
Expand Up @@ -468,6 +468,7 @@ changelog' (_, ListResult {..}) = do
Darwin -> exec "open" [T.unpack $ decUTF8Safe $ serializeURIRef' uri] Nothing Nothing
Linux _ -> exec "xdg-open" [T.unpack $ decUTF8Safe $ serializeURIRef' uri] Nothing Nothing
FreeBSD -> exec "xdg-open" [T.unpack $ decUTF8Safe $ serializeURIRef' uri] Nothing Nothing
OpenBSD -> exec "xdg-open" [T.unpack $ decUTF8Safe $ serializeURIRef' uri] Nothing Nothing
Windows -> do
let args = "start \"\" " ++ (T.unpack $ decUTF8Safe $ serializeURIRef' uri)
c <- liftIO $ system $ args
Expand Down

0 comments on commit 29a9d3b

Please sign in to comment.