Fix open on FreeBSD
This commit is contained in:
		
							parent
							
								
									880b7b811e
								
							
						
					
					
						commit
						869803f60e
					
				@ -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) {
 | 
					pub fn open(url: &str) {
 | 
				
			||||||
	use std;
 | 
						use std;
 | 
				
			||||||
	let _ = std::process::Command::new("open").arg(url).spawn();
 | 
						let _ = std::process::Command::new("open").arg(url).spawn();
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user