File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -254,8 +254,8 @@ fn build(
254
254
// may not be immediately clear to the user.
255
255
let cfg_has_build_std = cargo_config. has_build_std ( ) ;
256
256
let opts_has_build_std = build_options
257
- . clone ( )
258
257
. unstable
258
+ . clone ( )
259
259
. map ( |ref v| v. iter ( ) . any ( |s| s. contains ( "build-std" ) ) )
260
260
. unwrap_or_default ( ) ;
261
261
let xtensa_target = target. starts_with ( "xtensa-" ) ;
Original file line number Diff line number Diff line change @@ -113,10 +113,10 @@ pub struct SaveImageArgs {
113
113
#[ clap( long) ]
114
114
pub merge : bool ,
115
115
/// Custom partition table for merging
116
- #[ clap( long) ]
116
+ #[ clap( long, short = 'T' , requires = "merge" ) ]
117
117
pub partition_table : Option < PathBuf > ,
118
118
/// Don't pad the image to the flash size
119
- #[ clap( long) ]
119
+ #[ clap( long, short = 'P' , requires = "merge" ) ]
120
120
pub skip_padding : bool ,
121
121
}
122
122
You can’t perform that action at this time.
0 commit comments