We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b36e550 commit d7a93a4Copy full SHA for d7a93a4
packages/backend/src/repoCompileUtils.ts
@@ -123,6 +123,7 @@ export const compileGitlabConfig = async (
123
const repos = gitlabRepos.map((project) => {
124
const projectUrl = `${hostUrl}/${project.path_with_namespace}`;
125
const cloneUrl = new URL(project.http_url_to_repo);
126
+ cloneUrl.protocol = new URL(hostUrl).protocol;
127
const isFork = project.forked_from_project !== undefined;
128
const isPublic = project.visibility === 'public';
129
const repoDisplayName = project.path_with_namespace;
0 commit comments