Skip to content

Commit

Permalink
chore: commit_changes flag for .publish. Default value is false
Browse files Browse the repository at this point in the history
  • Loading branch information
Barsik-sus committed Oct 30, 2024
1 parent 83de204 commit 8b95df9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion module/move/willbe/src/command/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ mod private
.optional( true )
.end()
.property( "commit_changes" )
.hint( "Indicates whether changes should be committed. Default is `true`." )
.hint( "Indicates whether changes should be committed. Default is `false`." )
.kind( Type::Bool )
.optional( true )
.end()
Expand Down
2 changes: 1 addition & 1 deletion module/move/willbe/src/command/publish.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ mod private
channel : Channel,
#[ former( default = true ) ]
exclude_dev_dependencies : bool,
#[ former( default = true ) ]
#[ former( default = false ) ]
commit_changes : bool,
#[ former( default = true ) ]
dry : bool,
Expand Down

0 comments on commit 8b95df9

Please sign in to comment.