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 66b2e60 commit b01e56bCopy full SHA for b01e56b
1 file changed
bin/utils/clone-action.ts
@@ -25,7 +25,7 @@ export const cloneAction = async (
25
await spawn("git", ["config", "--global", "core.longpaths", "true"])
26
}
27
28
- const repoUrl = `https://${config.token ? config.token + "@" : ""}github.com/${config.owner}/${config.repository}.git`
+ const repoUrl = `https://${config.token ? config.token + "@" : config.token}github.com/${config.owner}/${config.repository}.git`
29
const tempDir = path.resolve(
30
os.tmpdir(),
31
`${config.repository}-${Date.now()}${Math.random().toString(16).slice(2, 6)}`,
0 commit comments