Skip to content

Commit

Permalink
[typos][s]: Merge pull request #461 from rdimaio/main
Browse files Browse the repository at this point in the history
  • Loading branch information
rufuspollock authored Mar 27, 2023
2 parents d334dd0 + 2565b52 commit dadfa85
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions packages/cli/e2e/test.bats
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ teardown() {
@test "Install Flowershow template and preview site" {
run install.sh $CLI_EXE
assert_success
assert_output --partial "Successfuly installed"
assert_output --partial "Successfully installed"
assert [ -d .flowershow/node_modules ]

run node $CLI_EXE preview & sleep 20
Expand All @@ -45,7 +45,7 @@ teardown() {
@test "Install Flowershow template, build and start site" {
run install.sh $CLI_EXE
assert_success
assert_output --partial "Successfuly installed"
assert_output --partial "Successfully installed"
assert [ -d .flowershow/node_modules ]

run node $CLI_EXE build
Expand Down Expand Up @@ -73,7 +73,7 @@ teardown() {
fi

run install.sh $CLI_EXE
assert_output --partial "Successfuly installed"
assert_output --partial "Successfully installed"
run [ -d .flowershow/node_modules ]
assert_success

Expand Down
4 changes: 2 additions & 2 deletions packages/cli/src/lib/Installer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ export default class Installer {
);
}

// if there is a config.js file from older flowershow, change it's extension.
// if there is a config.js file from older flowershow, change its extension.
if (fs.existsSync(`${contentPath}/config.js`)) {
fs.rename(
`${contentPath}/config.js`,
Expand Down Expand Up @@ -234,7 +234,7 @@ export default class Installer {
log(stdout);
log(stderr);
stopSpinner();
success("Successfuly installed Flowershow!");
success("Successfully installed Flowershow!");
} catch (err) {
error(`Failed to install Flowershow dependencies: ${err.message}`);
exit(err.exitCode);
Expand Down

0 comments on commit dadfa85

Please sign in to comment.