File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
rust/stackablectl/src/cmds Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ pub enum CmdError {
130130 #[ snafu( display( "invalid repository name" ) ) ]
131131 InvalidRepoName { source : InvalidRepoNameError } ,
132132
133- #[ snafu( display( "invalid helm chart version {version:?} (need to be semver) " ) ) ]
133+ #[ snafu( display( "invalid semantic helm chart version {version:?}" ) ) ]
134134 InvalidHelmChartVersion {
135135 source : semver:: Error ,
136136 version : String ,
@@ -531,7 +531,7 @@ where
531531 let mut versions = entries
532532 . iter ( )
533533 . map ( |entry| {
534- Version :: parse ( & entry. version ) . context ( InvalidHelmChartVersionSnafu {
534+ Version :: parse ( & entry. version ) . with_context ( |_| InvalidHelmChartVersionSnafu {
535535 version : entry. version . clone ( ) ,
536536 } )
537537 } )
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ fn main() {
2525 . arg ( & vite_out_dir)
2626 . arg ( "--base" )
2727 . arg ( "/ui/" ) ;
28+
2829 let vite_status = vite_command. status ( ) ;
2930 match vite_status {
3031 Ok ( vite_status) if vite_status. success ( ) => { }
You can’t perform that action at this time.
0 commit comments