@@ -1705,7 +1705,7 @@ impl Step for Extended {
17051705
17061706 let heat_flags = [ "-nologo" , "-gg" , "-sfrag" , "-srd" , "-sreg" ] ;
17071707 builder. run (
1708- Command :: new ( & heat)
1708+ BootstrapCommand :: new ( & heat)
17091709 . current_dir ( & exe)
17101710 . arg ( "dir" )
17111711 . arg ( "rustc" )
@@ -1721,7 +1721,7 @@ impl Step for Extended {
17211721 ) ;
17221722 if built_tools. contains ( "rust-docs" ) {
17231723 builder. run (
1724- Command :: new ( & heat)
1724+ BootstrapCommand :: new ( & heat)
17251725 . current_dir ( & exe)
17261726 . arg ( "dir" )
17271727 . arg ( "rust-docs" )
@@ -1739,7 +1739,7 @@ impl Step for Extended {
17391739 ) ;
17401740 }
17411741 builder. run (
1742- Command :: new ( & heat)
1742+ BootstrapCommand :: new ( & heat)
17431743 . current_dir ( & exe)
17441744 . arg ( "dir" )
17451745 . arg ( "cargo" )
@@ -1756,7 +1756,7 @@ impl Step for Extended {
17561756 . arg ( etc. join ( "msi/remove-duplicates.xsl" ) ) ,
17571757 ) ;
17581758 builder. run (
1759- Command :: new ( & heat)
1759+ BootstrapCommand :: new ( & heat)
17601760 . current_dir ( & exe)
17611761 . arg ( "dir" )
17621762 . arg ( "rust-std" )
@@ -1772,7 +1772,7 @@ impl Step for Extended {
17721772 ) ;
17731773 if built_tools. contains ( "rust-analyzer" ) {
17741774 builder. run (
1775- Command :: new ( & heat)
1775+ BootstrapCommand :: new ( & heat)
17761776 . current_dir ( & exe)
17771777 . arg ( "dir" )
17781778 . arg ( "rust-analyzer" )
@@ -1791,7 +1791,7 @@ impl Step for Extended {
17911791 }
17921792 if built_tools. contains ( "clippy" ) {
17931793 builder. run (
1794- Command :: new ( & heat)
1794+ BootstrapCommand :: new ( & heat)
17951795 . current_dir ( & exe)
17961796 . arg ( "dir" )
17971797 . arg ( "clippy" )
@@ -1810,7 +1810,7 @@ impl Step for Extended {
18101810 }
18111811 if built_tools. contains ( "miri" ) {
18121812 builder. run (
1813- Command :: new ( & heat)
1813+ BootstrapCommand :: new ( & heat)
18141814 . current_dir ( & exe)
18151815 . arg ( "dir" )
18161816 . arg ( "miri" )
@@ -1828,7 +1828,7 @@ impl Step for Extended {
18281828 ) ;
18291829 }
18301830 builder. run (
1831- Command :: new ( & heat)
1831+ BootstrapCommand :: new ( & heat)
18321832 . current_dir ( & exe)
18331833 . arg ( "dir" )
18341834 . arg ( "rust-analysis" )
@@ -1846,7 +1846,7 @@ impl Step for Extended {
18461846 ) ;
18471847 if target. ends_with ( "windows-gnu" ) {
18481848 builder. run (
1849- Command :: new ( & heat)
1849+ BootstrapCommand :: new ( & heat)
18501850 . current_dir ( & exe)
18511851 . arg ( "dir" )
18521852 . arg ( "rust-mingw" )
0 commit comments