We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4292894 commit 52fa2aaCopy full SHA for 52fa2aa
1 file changed
src/compiler/rust.rs
@@ -1445,7 +1445,12 @@ where
1445
// These contain paths which aren't relevant to the output, and the compiler inputs
1446
// in those paths (rlibs and static libs used in the compilation) are used as hash
1447
// inputs below.
1448
- .filter(|&(arg, _)| !(arg == "--extern" || arg == "-L" || arg == "--out-dir" || arg == "--diagnostic-width"))
+ .filter(|&(arg, _)| {
1449
+ !(arg == "--extern"
1450
+ || arg == "-L"
1451
+ || arg == "--out-dir"
1452
+ || arg == "--diagnostic-width")
1453
+ })
1454
// We also exclude `--target` if it specifies a path to a .json file. The file content
1455
// is used as hash input below.
1456
// If `--target` specifies a string, it continues to be hashed as part of the arguments.
0 commit comments