Skip to content

Commit

Permalink
Fix the macos warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Marekkon5 committed Oct 31, 2022
1 parent 61de2a6 commit a1e6b94
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion crates/onetagger/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ fn main() {
info!("\n\nStarting OneTagger v{VERSION} Commit: {COMMIT} OS: {}\n\n", std::env::consts::OS);

// MacOS
old_macos_warning().ok();
if !cli.server {
old_macos_warning().ok();
}

// Start
let context = StartContext {
Expand Down

0 comments on commit a1e6b94

Please sign in to comment.