Branch

allow path to be empty, placing generated site at the root

Sun Sep 28 2025

tucker <tucker@pangolin.lan>


    

29237ed0d328c1e2001db91cb2c48a2566e19c7c

Side-by-side
Stacked
main.ts:23
Before
23 24
  // TODO: make a better way of making this default to "/repos" so that it doesn't have to
  const reposPath = reposConfiguration.path || "/repos"
After
23 24
  // TODO: make a better way of making this default to "" so that it doesn't have to
  const reposPath = reposConfiguration.path || ""
src/repos.ts:61
Before
61
      cloneUrl: repoHelpers[repoType].cloneUrl(reposConfig.baseUrl + (reposConfig.path || "/repos"), repoName)
After
61
      cloneUrl: repoHelpers[repoType].cloneUrl(reposConfig.baseUrl + (reposConfig.path || ""), repoName)