Skip to content

Commit

Permalink
fix warning wording
Browse files Browse the repository at this point in the history
  • Loading branch information
Etienne Moureton committed Sep 11, 2024
1 parent 2ccfd92 commit 8623532
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class BulkInstall {
}
if (lockFiles.length === 1) {
const packageManager = lockFiles[0];
consola.info(`package.json trouvé dans ${folder}, exécution de ${packageManager} install...`);
consola.info(`Lock file trouvé dans ${folder}, exécution de ${packageManager} install...`);
await this.runInstall(folder, packageManager);
}
if (lockFiles.length === 0) {
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class BulkInstall {

if (lockFiles.length === 1) {
const packageManager = lockFiles[0];
consola.info(`package.json trouvé dans ${folder}, exécution de ${packageManager} install...`);
consola.info(`Lock file trouvé dans ${folder}, exécution de ${packageManager} install...`);
await this.runInstall(folder, packageManager);
}

Expand Down

0 comments on commit 8623532

Please sign in to comment.