Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Commit

Permalink
Fix open on FreeBSD
Browse files Browse the repository at this point in the history
  • Loading branch information
wdv4758h committed Aug 23, 2016
1 parent 880b7b8 commit 869803f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parity/url.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ pub fn open(url: &str) {
}
}

#[cfg(target_os="macos")]
#[cfg(any(target_os="macos", target_os="freebsd"))]
pub fn open(url: &str) {
use std;
let _ = std::process::Command::new("open").arg(url).spawn();
Expand Down

0 comments on commit 869803f

Please sign in to comment.