tucker
allow path to be empty, placing generated site at the root
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"
23 24
// TODO: make a better way of making this default to "" so that it doesn't have to
const reposPath = reposConfiguration.path || ""
61
cloneUrl: repoHelpers[repoType].cloneUrl(reposConfig.baseUrl + (reposConfig.path || "/repos"), repoName)
61
cloneUrl: repoHelpers[repoType].cloneUrl(reposConfig.baseUrl + (reposConfig.path || ""), repoName)