Skip to content

Commit

Permalink
chore: update default value for skip-devops-init flag
Browse files Browse the repository at this point in the history
- Modify the `skip-devops-init` flag's default value to `true` instead of `false`

Signed-off-by: ysicing <[email protected]>
  • Loading branch information
ysicing committed May 29, 2024
1 parent a14e5a2 commit 12743ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/quickon/quickon.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@ func (m *Meta) GetCustomFlags() []types.Flag {
},
{
Name: "skip-devops-init",
Usage: "allow user skip devops init, default: false",
Usage: "allow user skip devops init, default: true",
P: &m.SkipDevOPSInit,
V: false,
V: true,
},
{
Name: "db-replication",
Expand Down

0 comments on commit 12743ea

Please sign in to comment.