Skip to content

Commit

Permalink
Fix Windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
yuvadm committed Oct 21, 2019
1 parent 997444f commit 23462ea
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ fn main() {
// Experimental GUI
if matches.is_present("gui") {
if cfg!(target_family = "windows") {
println!("Experimental GUI not supported on Windows...")
println!("Experimental GUI not supported on Windows...");
return;
}
start_gui();
return;
Expand Down

0 comments on commit 23462ea

Please sign in to comment.