Remove .git from remote_url (#299)

Remove .git from remote_url

Co-authored-by: Deon Marshall <dmarshall@ccp.com.au>
This commit is contained in:
Maxwell Becker
2025-02-26 14:55:58 -08:00
committed by mbecker20
co-authored by Deon Marshall
parent 324cd508b3
commit 70211e4159
+1 -1
View File
@@ -431,7 +431,7 @@ impl CloneArgs {
.as_ref()
.context("resource has no repo attached")?;
Ok(format!(
"{protocol}://{access_token_at}{}/{repo}.git",
"{protocol}://{access_token_at}{}/{repo}",
self.provider
))
}