Skip to content

Commit d1bd9d5

Browse files
committed
chore: commit_changes flag for .publish. Default value is false
1 parent 23bbba4 commit d1bd9d5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

module/move/willbe/src/command/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ mod private
3131
.optional( true )
3232
.end()
3333
.property( "commit_changes" )
34-
.hint( "Indicates whether changes should be committed. Default is `true`." )
34+
.hint( "Indicates whether changes should be committed. Default is `false`." )
3535
.kind( Type::Bool )
3636
.optional( true )
3737
.end()

module/move/willbe/src/command/publish.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ mod private
1717
channel : Channel,
1818
#[ former( default = true ) ]
1919
exclude_dev_dependencies : bool,
20-
#[ former( default = true ) ]
20+
#[ former( default = false ) ]
2121
commit_changes : bool,
2222
#[ former( default = true ) ]
2323
dry : bool,

0 commit comments

Comments
 (0)