Thanks to visit codestin.com Credit goes to github.com
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 df85d46 commit 3fff52aCopy full SHA for 3fff52a
src/validate.ts
@@ -59,7 +59,9 @@ async function validate(args: string[]) {
59
const tempGit: SimpleGit = gitP(tmpDir);
60
61
await tempGit.init();
62
- await tempGit.addRemote("origin", skeleton.config.repo.uri);
+ await tempGit
63
+ .addRemote("origin", skeleton.config.repo.uri)
64
+ .catch(console.warn);
65
await tempGit.fetch("origin", skeleton.config.repo.branch);
66
// no js cherry pick implementation
67
const cherryPick = createCherryPick(tmpDir);
0 commit comments