@@ -1705,7 +1705,7 @@ impl Step for Extended {
1705
1705
1706
1706
let heat_flags = [ "-nologo" , "-gg" , "-sfrag" , "-srd" , "-sreg" ] ;
1707
1707
builder. run (
1708
- Command :: new ( & heat)
1708
+ BootstrapCommand :: new ( & heat)
1709
1709
. current_dir ( & exe)
1710
1710
. arg ( "dir" )
1711
1711
. arg ( "rustc" )
@@ -1721,7 +1721,7 @@ impl Step for Extended {
1721
1721
) ;
1722
1722
if built_tools. contains ( "rust-docs" ) {
1723
1723
builder. run (
1724
- Command :: new ( & heat)
1724
+ BootstrapCommand :: new ( & heat)
1725
1725
. current_dir ( & exe)
1726
1726
. arg ( "dir" )
1727
1727
. arg ( "rust-docs" )
@@ -1739,7 +1739,7 @@ impl Step for Extended {
1739
1739
) ;
1740
1740
}
1741
1741
builder. run (
1742
- Command :: new ( & heat)
1742
+ BootstrapCommand :: new ( & heat)
1743
1743
. current_dir ( & exe)
1744
1744
. arg ( "dir" )
1745
1745
. arg ( "cargo" )
@@ -1756,7 +1756,7 @@ impl Step for Extended {
1756
1756
. arg ( etc. join ( "msi/remove-duplicates.xsl" ) ) ,
1757
1757
) ;
1758
1758
builder. run (
1759
- Command :: new ( & heat)
1759
+ BootstrapCommand :: new ( & heat)
1760
1760
. current_dir ( & exe)
1761
1761
. arg ( "dir" )
1762
1762
. arg ( "rust-std" )
@@ -1772,7 +1772,7 @@ impl Step for Extended {
1772
1772
) ;
1773
1773
if built_tools. contains ( "rust-analyzer" ) {
1774
1774
builder. run (
1775
- Command :: new ( & heat)
1775
+ BootstrapCommand :: new ( & heat)
1776
1776
. current_dir ( & exe)
1777
1777
. arg ( "dir" )
1778
1778
. arg ( "rust-analyzer" )
@@ -1791,7 +1791,7 @@ impl Step for Extended {
1791
1791
}
1792
1792
if built_tools. contains ( "clippy" ) {
1793
1793
builder. run (
1794
- Command :: new ( & heat)
1794
+ BootstrapCommand :: new ( & heat)
1795
1795
. current_dir ( & exe)
1796
1796
. arg ( "dir" )
1797
1797
. arg ( "clippy" )
@@ -1810,7 +1810,7 @@ impl Step for Extended {
1810
1810
}
1811
1811
if built_tools. contains ( "miri" ) {
1812
1812
builder. run (
1813
- Command :: new ( & heat)
1813
+ BootstrapCommand :: new ( & heat)
1814
1814
. current_dir ( & exe)
1815
1815
. arg ( "dir" )
1816
1816
. arg ( "miri" )
@@ -1828,7 +1828,7 @@ impl Step for Extended {
1828
1828
) ;
1829
1829
}
1830
1830
builder. run (
1831
- Command :: new ( & heat)
1831
+ BootstrapCommand :: new ( & heat)
1832
1832
. current_dir ( & exe)
1833
1833
. arg ( "dir" )
1834
1834
. arg ( "rust-analysis" )
@@ -1846,7 +1846,7 @@ impl Step for Extended {
1846
1846
) ;
1847
1847
if target. ends_with ( "windows-gnu" ) {
1848
1848
builder. run (
1849
- Command :: new ( & heat)
1849
+ BootstrapCommand :: new ( & heat)
1850
1850
. current_dir ( & exe)
1851
1851
. arg ( "dir" )
1852
1852
. arg ( "rust-mingw" )
0 commit comments