Skip to content

Commit

Permalink
Merge pull request #9675 from balinterdi/fix-default-pnpm-install
Browse files Browse the repository at this point in the history
Fix using pnpm install inadvertently
  • Loading branch information
rwjblue authored Dec 20, 2021
2 parents 35e69a9 + 2f4d9aa commit 98aef89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/tasks/npm-task.js
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ class NpmTask extends Task {
logger.info('yarn.lock not found');
}

if (this.hasPNPMLock()) {
if (await this.hasPNPMLock()) {
logger.info('pnpm-lock.yaml found -> trying pnpm');
try {
let result = await this.checkPNPM();
Expand Down

0 comments on commit 98aef89

Please sign in to comment.