aboutsummaryrefslogtreecommitdiffstats
path: root/git-lfs-authenticate
diff options
context:
space:
mode:
authorLibravatar Rutger Broekhoff2024-04-29 18:15:16 +0200
committerLibravatar Rutger Broekhoff2024-04-29 18:15:16 +0200
commitb8905bf2fcc3c743d8f9bebd3579928e7e91766c (patch)
treea6a5ed3f8a30f1ad27ea9b31d7299332ae01cccf /git-lfs-authenticate
parent2723f48c6fa1b26dc1b563fa68b130755a28387e (diff)
downloadgitolfs3-b8905bf2fcc3c743d8f9bebd3579928e7e91766c.tar.gz
gitolfs3-b8905bf2fcc3c743d8f9bebd3579928e7e91766c.zip
Fix Clippy issues
Diffstat (limited to 'git-lfs-authenticate')
-rw-r--r--git-lfs-authenticate/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-lfs-authenticate/src/main.rs b/git-lfs-authenticate/src/main.rs
index 3101c92..c9094a1 100644
--- a/git-lfs-authenticate/src/main.rs
+++ b/git-lfs-authenticate/src/main.rs
@@ -50,7 +50,7 @@ fn main() -> ExitCode {
50 "expires_at": expires_at.to_rfc3339_opts(chrono::SecondsFormat::Secs, true), 50 "expires_at": expires_at.to_rfc3339_opts(chrono::SecondsFormat::Secs, true),
51 "href": format!("{}{}/info/lfs", config.href_base, repo_name), 51 "href": format!("{}{}/info/lfs", config.href_base, repo_name),
52 }); 52 });
53 println!("{}", response.to_string()); 53 println!("{}", response);
54 54
55 ExitCode::SUCCESS 55 ExitCode::SUCCESS
56} 56}