@@ -1701,7 +1701,7 @@ impl Step for Extended {
1701
1701
1702
1702
let heat_flags = [ "-nologo" , "-gg" , "-sfrag" , "-srd" , "-sreg" ] ;
1703
1703
builder. run (
1704
- Command :: new ( & heat)
1704
+ BootstrapCommand :: new ( & heat)
1705
1705
. current_dir ( & exe)
1706
1706
. arg ( "dir" )
1707
1707
. arg ( "rustc" )
@@ -1717,7 +1717,7 @@ impl Step for Extended {
1717
1717
) ;
1718
1718
if built_tools. contains ( "rust-docs" ) {
1719
1719
builder. run (
1720
- Command :: new ( & heat)
1720
+ BootstrapCommand :: new ( & heat)
1721
1721
. current_dir ( & exe)
1722
1722
. arg ( "dir" )
1723
1723
. arg ( "rust-docs" )
@@ -1735,7 +1735,7 @@ impl Step for Extended {
1735
1735
) ;
1736
1736
}
1737
1737
builder. run (
1738
- Command :: new ( & heat)
1738
+ BootstrapCommand :: new ( & heat)
1739
1739
. current_dir ( & exe)
1740
1740
. arg ( "dir" )
1741
1741
. arg ( "cargo" )
@@ -1752,7 +1752,7 @@ impl Step for Extended {
1752
1752
. arg ( etc. join ( "msi/remove-duplicates.xsl" ) ) ,
1753
1753
) ;
1754
1754
builder. run (
1755
- Command :: new ( & heat)
1755
+ BootstrapCommand :: new ( & heat)
1756
1756
. current_dir ( & exe)
1757
1757
. arg ( "dir" )
1758
1758
. arg ( "rust-std" )
@@ -1768,7 +1768,7 @@ impl Step for Extended {
1768
1768
) ;
1769
1769
if built_tools. contains ( "rust-analyzer" ) {
1770
1770
builder. run (
1771
- Command :: new ( & heat)
1771
+ BootstrapCommand :: new ( & heat)
1772
1772
. current_dir ( & exe)
1773
1773
. arg ( "dir" )
1774
1774
. arg ( "rust-analyzer" )
@@ -1787,7 +1787,7 @@ impl Step for Extended {
1787
1787
}
1788
1788
if built_tools. contains ( "clippy" ) {
1789
1789
builder. run (
1790
- Command :: new ( & heat)
1790
+ BootstrapCommand :: new ( & heat)
1791
1791
. current_dir ( & exe)
1792
1792
. arg ( "dir" )
1793
1793
. arg ( "clippy" )
@@ -1806,7 +1806,7 @@ impl Step for Extended {
1806
1806
}
1807
1807
if built_tools. contains ( "miri" ) {
1808
1808
builder. run (
1809
- Command :: new ( & heat)
1809
+ BootstrapCommand :: new ( & heat)
1810
1810
. current_dir ( & exe)
1811
1811
. arg ( "dir" )
1812
1812
. arg ( "miri" )
@@ -1824,7 +1824,7 @@ impl Step for Extended {
1824
1824
) ;
1825
1825
}
1826
1826
builder. run (
1827
- Command :: new ( & heat)
1827
+ BootstrapCommand :: new ( & heat)
1828
1828
. current_dir ( & exe)
1829
1829
. arg ( "dir" )
1830
1830
. arg ( "rust-analysis" )
@@ -1842,7 +1842,7 @@ impl Step for Extended {
1842
1842
) ;
1843
1843
if target. ends_with ( "windows-gnu" ) {
1844
1844
builder. run (
1845
- Command :: new ( & heat)
1845
+ BootstrapCommand :: new ( & heat)
1846
1846
. current_dir ( & exe)
1847
1847
. arg ( "dir" )
1848
1848
. arg ( "rust-mingw" )
0 commit comments