Skip to content

Commit

Permalink
refactor: fix no-default-features
Browse files Browse the repository at this point in the history
  • Loading branch information
orhun committed Dec 9, 2024
1 parent 9f6c46a commit f592624
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions git-cliff/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
use clap::Parser;
use git_cliff::args::Args;
use git_cliff::{
check_new_version,
init_config,
logger,
};
Expand Down Expand Up @@ -65,7 +64,7 @@ fn main() -> Result<()> {

// Check if there is a new version available.
#[cfg(feature = "update-informer")]
check_new_version();
git_cliff::check_new_version();

// Create the configuration file if init flag is given.
if let Some(path) = &args.init {
Expand Down

0 comments on commit f592624

Please sign in to comment.