We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e39dc91 + 4cbcc63 commit 5ee89eeCopy full SHA for 5ee89ee
src/validate.ts
@@ -58,7 +58,9 @@ async function validate (args: string[]) {
58
const tempGit: SimpleGit = gitP(tmpDir)
59
60
await tempGit.init()
61
- await tempGit.addRemote('origin', skeleton.config.repo.uri)
+ await tempGit
62
+ .addRemote('origin', skeleton.config.repo.uri)
63
+ .catch(console.warn)
64
await tempGit.fetch('origin', skeleton.config.repo.branch)
65
// no js cherry pick implementation
66
const cherryPick = createCherryPick(tmpDir)
0 commit comments