From d09832503e9dad1d914ffb42d53c2b8f7aa896f4 Mon Sep 17 00:00:00 2001 From: Ryan Goodfellow Date: Fri, 25 Feb 2022 01:55:15 -0800 Subject: [PATCH] no .git on https? --- tools/helios-build/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/helios-build/src/main.rs b/tools/helios-build/src/main.rs index 0afcdf9..99ed252 100644 --- a/tools/helios-build/src/main.rs +++ b/tools/helios-build/src/main.rs @@ -131,7 +131,7 @@ impl Project { Ok(if use_ssh || self.use_ssh { format!("git@github.com:{}.git", github) } else { - format!("https://github.com/{}.git", github) + format!("https://github.com/{}", github) }) } else { bail!("need github or url?");