Skip to content

Commit 5278a51

Browse files
committed
fix: use https remote URL
1 parent 821bf66 commit 5278a51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ async function main(): Promise<void> {
128128
throw err
129129
}
130130
}
131-
await exec('git', ['remote', 'add', 'origin', `git@github.com:sourcegraph/${repoName}.git`])
131+
await exec('git', ['remote', 'add', 'origin', `https://github.com/sourcegraph/${repoName}.git`])
132132
} else {
133133
console.log('📘 Existing git remote detected, skipping GitHub repository creation')
134134
}

0 commit comments

Comments
 (0)