Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@ struct Args {
}

fn main() {
// Initialize logger
env_logger::init();

// Parse arguments
let args = Args::parse();

Expand All @@ -41,6 +38,9 @@ fn main() {
return;
}

// Initialize logger
env_logger::init();

// Create (if needed) and acquire lockfile
// Exit if there's already an instance running
// or if there was an issue creating or acquiring the lockfile (e.g. permission issue)
Expand Down