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-03-12 22:21:05 -04:00
committed by mbecker20
co-authored by Deon Marshall
parent f0d22642b2
commit ca2c728bf3
+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
))
}