@@ -1424,7 +1424,7 @@ impl Step for Extended {
1424
1424
1425
1425
let xform = |p : & Path | {
1426
1426
let mut contents = t ! ( fs:: read_to_string( p) ) ;
1427
- for tool in & [ "rust-demangler" , "rust-analyzer" , "rustfmt" ] {
1427
+ for tool in & [ "rust-demangler" ] {
1428
1428
if !built_tools. contains ( tool) {
1429
1429
contents = filter ( & contents, tool) ;
1430
1430
}
@@ -1465,7 +1465,8 @@ impl Step for Extended {
1465
1465
prepare ( "rust-analysis" ) ;
1466
1466
prepare ( "clippy" ) ;
1467
1467
prepare ( "miri" ) ;
1468
- for tool in & [ "rust-docs" , "rust-demangler" , "rust-analyzer" ] {
1468
+ prepare ( "rust-analyzer" ) ;
1469
+ for tool in & [ "rust-docs" , "rust-demangler" ] {
1469
1470
if built_tools. contains ( tool) {
1470
1471
prepare ( tool) ;
1471
1472
}
@@ -1525,7 +1526,8 @@ impl Step for Extended {
1525
1526
prepare ( "rust-std" ) ;
1526
1527
prepare ( "clippy" ) ;
1527
1528
prepare ( "miri" ) ;
1528
- for tool in & [ "rust-demangler" , "rust-analyzer" ] {
1529
+ prepare ( "rust-analyzer" ) ;
1530
+ for tool in & [ "rust-demangler" ] {
1529
1531
if built_tools. contains ( tool) {
1530
1532
prepare ( tool) ;
1531
1533
}
@@ -1609,25 +1611,23 @@ impl Step for Extended {
1609
1611
. arg ( "-out" )
1610
1612
. arg ( exe. join ( "StdGroup.wxs" ) ) ,
1611
1613
) ;
1612
- if built_tools. contains ( "rust-analyzer" ) {
1613
- builder. run (
1614
- Command :: new ( & heat)
1615
- . current_dir ( & exe)
1616
- . arg ( "dir" )
1617
- . arg ( "rust-analyzer" )
1618
- . args ( & heat_flags)
1619
- . arg ( "-cg" )
1620
- . arg ( "RustAnalyzerGroup" )
1621
- . arg ( "-dr" )
1622
- . arg ( "RustAnalyzer" )
1623
- . arg ( "-var" )
1624
- . arg ( "var.RustAnalyzerDir" )
1625
- . arg ( "-out" )
1626
- . arg ( exe. join ( "RustAnalyzerGroup.wxs" ) )
1627
- . arg ( "-t" )
1628
- . arg ( etc. join ( "msi/remove-duplicates.xsl" ) ) ,
1629
- ) ;
1630
- }
1614
+ builder. run (
1615
+ Command :: new ( & heat)
1616
+ . current_dir ( & exe)
1617
+ . arg ( "dir" )
1618
+ . arg ( "rust-analyzer" )
1619
+ . args ( & heat_flags)
1620
+ . arg ( "-cg" )
1621
+ . arg ( "RustAnalyzerGroup" )
1622
+ . arg ( "-dr" )
1623
+ . arg ( "RustAnalyzer" )
1624
+ . arg ( "-var" )
1625
+ . arg ( "var.RustAnalyzerDir" )
1626
+ . arg ( "-out" )
1627
+ . arg ( exe. join ( "RustAnalyzerGroup.wxs" ) )
1628
+ . arg ( "-t" )
1629
+ . arg ( etc. join ( "msi/remove-duplicates.xsl" ) ) ,
1630
+ ) ;
1631
1631
builder. run (
1632
1632
Command :: new ( & heat)
1633
1633
. current_dir ( & exe)
0 commit comments