Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(typo): reseted does not exists, it is reset #723

Merged
merged 1 commit into from
Jun 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/stacks.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ var (
Category: "Runtime Stacks",
Usage: "Set the runtime stack of an app",
Flags: []cli.Flag{appFlag},
Description: `Set the runtime stack of an app (deployment cache will be reseted):
Description: `Set the runtime stack of an app (deployment cache will be reset):

Example:
scalingo --app my-app stacks-set scalingo-18
Expand Down
2 changes: 1 addition & 1 deletion stacks/set.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ func Set(app string, stack string) error {
}

io.Statusf("Stack of %v has been set to %v (%v)\n", io.Bold(app), io.Bold(stackToSet.Name), stackToSet.ID)
io.Infof(io.Gray("Deployment cache of %v has been reseted\n"), app)
io.Infof(io.Gray("Deployment cache of %v has been reset\n"), app)

return nil
}