Skip to content

Commit

Permalink
Merge pull request #73 from traversaro/patch-1
Browse files Browse the repository at this point in the history
Fix open_url on Windows
  • Loading branch information
rdeits authored Nov 19, 2018
2 parents 3b46aea + 5fe54d4 commit 43bc0cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/servers.jl
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ end
function open_url(url)
try
if Sys.iswindows()
run(`start $url`)
run(`cmd.exe /C "start $url"`)
elseif Sys.isapple()
run(`open $url`)
elseif Sys.islinux()
Expand Down

0 comments on commit 43bc0cb

Please sign in to comment.