From 23edfebac5117ccf80a64202db4c8d33e3b677f2 Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Wed, 14 May 2025 12:31:02 -0400 Subject: [PATCH] fix clone url --- scripts/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/index.js b/scripts/index.js index 43948f8..1470c53 100644 --- a/scripts/index.js +++ b/scripts/index.js @@ -58,7 +58,7 @@ function renderRepoDescription(repoLink) { const cloneUrl = document.createElement("div"); cloneUrl.style.marginTop = "15px"; - cloneUrl.innerHTML = `git clone git.barrettruth.com/${repoName}.git`; + cloneUrl.innerHTML = `git clone https://git.barrettruth.com/git/${repoName}`; post.appendChild(cloneUrl); const viewNote = document.createElement("div");