Skip to content

Commit

Permalink
Don't be silent by default
Browse files Browse the repository at this point in the history
  • Loading branch information
udoprog committed Aug 3, 2020
1 parent fab9ab5 commit 4ff716c
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 39 deletions.
83 changes: 45 additions & 38 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bot/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ fn main() -> Result<()> {
error_backoff.initial_interval = time::Duration::from_secs(5);
error_backoff.max_elapsed_time = None;

let is_silent = !m.is_present("silent");
let is_silent = m.is_present("silent");

if !is_silent {
let startup = sys::Notification::new(format!("Started Oxidize {}", oxidize::VERSION));
Expand Down

0 comments on commit 4ff716c

Please sign in to comment.