Skip to content

Commit

Permalink
fix: Remove unnecessary clone 🐛
Browse files Browse the repository at this point in the history
  • Loading branch information
kdheepak committed Dec 24, 2023
1 parent af55eac commit 59390f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion async/template/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ macro_rules! trace_dbg {
pub fn version() -> String {
let author = clap::crate_authors!();

let commit_hash = GIT_COMMIT_HASH.clone();
let commit_hash = GIT_COMMIT_HASH;

// let current_exe_path = PathBuf::from(clap::crate_name!()).display().to_string();
let config_dir_path = get_config_dir().display().to_string();
Expand Down

0 comments on commit 59390f1

Please sign in to comment.