File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -681,7 +681,7 @@ impl Devenv {
681
681
}
682
682
683
683
pub async fn build ( & mut self , attributes : & [ String ] ) -> Result < ( ) > {
684
- let span = info_span ! ( "build" , devenv. user_message = "Building... " ) ;
684
+ let span = info_span ! ( "build" , devenv. user_message = "Building" ) ;
685
685
async move {
686
686
self . assemble ( false ) . await ?;
687
687
let attributes: Vec < String > = if attributes. is_empty ( ) {
@@ -912,7 +912,7 @@ impl Devenv {
912
912
// Parse the path and type from the first value
913
913
let key_parts: Vec < & str > = chunk[ 0 ] . split ( ':' ) . collect ( ) ;
914
914
if key_parts. len ( ) < 2 {
915
- miette:: bail!( "Invalid option format: '{}'. Must include type, e.g. 'languages.rust.version:string'. Supported types: {}" ,
915
+ miette:: bail!( "Invalid option format: '{}'. Must include type, e.g. 'languages.rust.version:string'. Supported types: {}" ,
916
916
chunk[ 0 ] , SUPPORTED_TYPES . join( ", " ) ) ;
917
917
}
918
918
You can’t perform that action at this time.
0 commit comments