Skip to content

Commit

Permalink
fix(typo): bootstrap command (#1206)
Browse files Browse the repository at this point in the history
  • Loading branch information
DayTF authored Nov 7, 2024
1 parent 99e2423 commit d60337b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/forest-cloud/src/commands/bootstrap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export default (program: Command, context: MakeCommands) => {
if (details) {
displayCustomizationInfo(logger.spinner, details);
logger.spinner.warn(
'If you continue it will boostrap a new customization project from scratch',
'If you continue it will bootstrap a new customization project from scratch',
);
logger.spinner.stop();

Expand Down
2 changes: 1 addition & 1 deletion packages/forest-cloud/test/commands/bootstrap.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ describe('bootstrap command', () => {
cmd.spinner.warn('There is already deployed customization code on your project'),
cmd.spinner.info('Last code pushed yesterday, by John Doe (johndoad@forestadmin.com)'),
cmd.spinner.warn(
'If you continue it will boostrap a new customization project from scratch',
'If you continue it will bootstrap a new customization project from scratch',
),
cmd.spinner.stop(),
cmd.question('Do you want to continue? (yes/no) '),
Expand Down

0 comments on commit d60337b

Please sign in to comment.