@@ -1809,10 +1809,6 @@ pub fn run_cargo(
1809
1809
is_check : bool ,
1810
1810
rlib_only_metadata : bool ,
1811
1811
) -> Vec < PathBuf > {
1812
- if builder. config . dry_run ( ) {
1813
- return Vec :: new ( ) ;
1814
- }
1815
-
1816
1812
// `target_root_dir` looks like $dir/$target/release
1817
1813
let target_root_dir = stamp. parent ( ) . unwrap ( ) ;
1818
1814
// `target_deps_dir` looks like $dir/$target/release/deps
@@ -1919,6 +1915,10 @@ pub fn run_cargo(
1919
1915
crate :: exit!( 1 ) ;
1920
1916
}
1921
1917
1918
+ if builder. config . dry_run ( ) {
1919
+ return Vec :: new ( ) ;
1920
+ }
1921
+
1922
1922
// Ok now we need to actually find all the files listed in `toplevel`. We've
1923
1923
// got a list of prefix/extensions and we basically just need to find the
1924
1924
// most recent file in the `deps` folder corresponding to each one.
@@ -1974,9 +1974,6 @@ pub fn stream_cargo(
1974
1974
cb : & mut dyn FnMut ( CargoMessage < ' _ > ) ,
1975
1975
) -> bool {
1976
1976
let mut cargo = Command :: from ( cargo) ;
1977
- if builder. config . dry_run ( ) {
1978
- return true ;
1979
- }
1980
1977
// Instruct Cargo to give us json messages on stdout, critically leaving
1981
1978
// stderr as piped so we can get those pretty colors.
1982
1979
let mut message_format = if builder. config . json_output {
@@ -1995,6 +1992,11 @@ pub fn stream_cargo(
1995
1992
}
1996
1993
1997
1994
builder. verbose ( & format ! ( "running: {cargo:?}" ) ) ;
1995
+
1996
+ if builder. config . dry_run ( ) {
1997
+ return true ;
1998
+ }
1999
+
1998
2000
let mut child = match cargo. spawn ( ) {
1999
2001
Ok ( child) => child,
2000
2002
Err ( e) => panic ! ( "failed to execute command: {cargo:?}\n ERROR: {e}" ) ,
0 commit comments