File tree Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -853,15 +853,23 @@ impl Fingerprint {
853
853
match ( new, old) {
854
854
( LocalFingerprint :: Precalculated ( a) , LocalFingerprint :: Precalculated ( b) ) => {
855
855
if a != b {
856
- bail ! ( "precalculated components have changed: previously {}, now {}" , b, a)
856
+ bail ! (
857
+ "precalculated components have changed: previously {}, now {}" ,
858
+ b,
859
+ a
860
+ )
857
861
}
858
862
}
859
863
(
860
864
LocalFingerprint :: CheckDepInfo { dep_info : adep } ,
861
865
LocalFingerprint :: CheckDepInfo { dep_info : bdep } ,
862
866
) => {
863
867
if adep != bdep {
864
- bail ! ( "dep info output changed: previously {:?}, now {:?}" , bdep, adep)
868
+ bail ! (
869
+ "dep info output changed: previously {:?}, now {:?}" ,
870
+ bdep,
871
+ adep
872
+ )
865
873
}
866
874
}
867
875
(
@@ -875,7 +883,11 @@ impl Fingerprint {
875
883
} ,
876
884
) => {
877
885
if aout != bout {
878
- bail ! ( "rerun-if-changed output changed: previously {:?}, now {:?}" , bout, aout)
886
+ bail ! (
887
+ "rerun-if-changed output changed: previously {:?}, now {:?}" ,
888
+ bout,
889
+ aout
890
+ )
879
891
}
880
892
if apaths != bpaths {
881
893
bail ! (
You can’t perform that action at this time.
0 commit comments