Skip to content

Commit

Permalink
suppress output of xdg-open (#2736)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pangoraw authored Dec 6, 2023
1 parent 5a41179 commit a4de685
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webserver/WebServer.jl
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function open_in_default_browser(url::AbstractString)::Bool
Base.run(`powershell.exe Start "'$url'"`)
true
elseif Sys.islinux()
Base.run(`xdg-open $url`)
Base.run(`xdg-open $url`, devnull, devnull, devnull)
true
else
false
Expand Down

0 comments on commit a4de685

Please sign in to comment.