Skip to content

Commit

Permalink
Fix typo in bootstrap command (#69976) (#70331)
Browse files Browse the repository at this point in the history
  • Loading branch information
patrykkopycinski committed Jun 30, 2020
1 parent 6795a4c commit 7b862ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/kbn-pm/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8868,7 +8868,7 @@ const BootstrapCommand = {
}

if (cachedProjectCount > 0) {
_utils_log__WEBPACK_IMPORTED_MODULE_1__["log"].success(`${cachedProjectCount} bootsrap builds are cached`);
_utils_log__WEBPACK_IMPORTED_MODULE_1__["log"].success(`${cachedProjectCount} bootstrap builds are cached`);
}

await Object(_utils_parallelize__WEBPACK_IMPORTED_MODULE_2__["parallelizeBatches"])(batchedProjects, async project => {
Expand Down
2 changes: 1 addition & 1 deletion packages/kbn-pm/src/commands/bootstrap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export const BootstrapCommand: ICommand = {
}

if (cachedProjectCount > 0) {
log.success(`${cachedProjectCount} bootsrap builds are cached`);
log.success(`${cachedProjectCount} bootstrap builds are cached`);
}

await parallelizeBatches(batchedProjects, async (project) => {
Expand Down

0 comments on commit 7b862ee

Please sign in to comment.