Skip to content

Commit

Permalink
fix: fix yarn executable
Browse files Browse the repository at this point in the history
  • Loading branch information
uetchy committed Oct 7, 2019
1 parent d0fcf23 commit 17aa179
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ function installDeps(rootDir: string, useYarn: boolean) {

async function IsYarnAvaialable() {
try {
await execa('yarnapkg', ['--version']);
await execa('yarnpkg', ['--version']);
return true;
} catch (e) {
return false;
Expand Down

0 comments on commit 17aa179

Please sign in to comment.