Skip to content

Commit

Permalink
Merge pull request openethereum#1984 from wdv4758h/fix-open
Browse files Browse the repository at this point in the history
Fix open on FreeBSD
  • Loading branch information
tomusdrw authored Aug 23, 2016
2 parents 880b7b8 + 869803f commit 81ac3a1
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 81ac3a1

Please sign in to comment.