Commit d21ee49

Anton Medvedev <anton@medv.io>
2023-10-16 12:10:50
Use https instead of git
1 parent ab03ff7
Changed files (1)
src/repo.ts
@@ -6,7 +6,7 @@ import { Badge } from './badges.js'
 export function gitClone(owner: string, repo: string) {
   spawnSync(
     'git',
-    ['clone', '--depth=1', `git@github.com:${owner}/${repo}.git`, 'repo'],
+    ['clone', '--depth=1', `https://github.com/${owner}/${repo}.git`, 'repo'],
     {
       stdio: 'inherit',
     },