aboutsummaryrefslogtreecommitdiffstats
path: root/git-lfs-authenticate/src
diff options
context:
space:
mode:
Diffstat (limited to 'git-lfs-authenticate/src')
-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}