@@ -1701,7 +1701,7 @@ impl Step for Extended {
17011701
17021702 let heat_flags = [ "-nologo" , "-gg" , "-sfrag" , "-srd" , "-sreg" ] ;
17031703 builder. run (
1704- Command :: new ( & heat)
1704+ BootstrapCommand :: new ( & heat)
17051705 . current_dir ( & exe)
17061706 . arg ( "dir" )
17071707 . arg ( "rustc" )
@@ -1717,7 +1717,7 @@ impl Step for Extended {
17171717 ) ;
17181718 if built_tools. contains ( "rust-docs" ) {
17191719 builder. run (
1720- Command :: new ( & heat)
1720+ BootstrapCommand :: new ( & heat)
17211721 . current_dir ( & exe)
17221722 . arg ( "dir" )
17231723 . arg ( "rust-docs" )
@@ -1735,7 +1735,7 @@ impl Step for Extended {
17351735 ) ;
17361736 }
17371737 builder. run (
1738- Command :: new ( & heat)
1738+ BootstrapCommand :: new ( & heat)
17391739 . current_dir ( & exe)
17401740 . arg ( "dir" )
17411741 . arg ( "cargo" )
@@ -1752,7 +1752,7 @@ impl Step for Extended {
17521752 . arg ( etc. join ( "msi/remove-duplicates.xsl" ) ) ,
17531753 ) ;
17541754 builder. run (
1755- Command :: new ( & heat)
1755+ BootstrapCommand :: new ( & heat)
17561756 . current_dir ( & exe)
17571757 . arg ( "dir" )
17581758 . arg ( "rust-std" )
@@ -1768,7 +1768,7 @@ impl Step for Extended {
17681768 ) ;
17691769 if built_tools. contains ( "rust-analyzer" ) {
17701770 builder. run (
1771- Command :: new ( & heat)
1771+ BootstrapCommand :: new ( & heat)
17721772 . current_dir ( & exe)
17731773 . arg ( "dir" )
17741774 . arg ( "rust-analyzer" )
@@ -1787,7 +1787,7 @@ impl Step for Extended {
17871787 }
17881788 if built_tools. contains ( "clippy" ) {
17891789 builder. run (
1790- Command :: new ( & heat)
1790+ BootstrapCommand :: new ( & heat)
17911791 . current_dir ( & exe)
17921792 . arg ( "dir" )
17931793 . arg ( "clippy" )
@@ -1806,7 +1806,7 @@ impl Step for Extended {
18061806 }
18071807 if built_tools. contains ( "miri" ) {
18081808 builder. run (
1809- Command :: new ( & heat)
1809+ BootstrapCommand :: new ( & heat)
18101810 . current_dir ( & exe)
18111811 . arg ( "dir" )
18121812 . arg ( "miri" )
@@ -1824,7 +1824,7 @@ impl Step for Extended {
18241824 ) ;
18251825 }
18261826 builder. run (
1827- Command :: new ( & heat)
1827+ BootstrapCommand :: new ( & heat)
18281828 . current_dir ( & exe)
18291829 . arg ( "dir" )
18301830 . arg ( "rust-analysis" )
@@ -1842,7 +1842,7 @@ impl Step for Extended {
18421842 ) ;
18431843 if target. ends_with ( "windows-gnu" ) {
18441844 builder. run (
1845- Command :: new ( & heat)
1845+ BootstrapCommand :: new ( & heat)
18461846 . current_dir ( & exe)
18471847 . arg ( "dir" )
18481848 . arg ( "rust-mingw" )
0 commit comments