From 1b70e573a892a8dd01bbcaa374cc986a4a0a733a Mon Sep 17 00:00:00 2001 From: iu0zjp2 <57671169+iu0zjp2@users.noreply.github.com> Date: Sat, 28 Dec 2019 03:36:38 +0100 Subject: [PATCH] Fix debug message. The [path] field of [Fingerprint] contains the "Hash of the path to the base source file". --- src/cargo/core/compiler/fingerprint.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cargo/core/compiler/fingerprint.rs b/src/cargo/core/compiler/fingerprint.rs index 192c16e9dc6..c2fdd99a737 100644 --- a/src/cargo/core/compiler/fingerprint.rs +++ b/src/cargo/core/compiler/fingerprint.rs @@ -643,7 +643,7 @@ impl Fingerprint { bail!("target configuration has changed") } if self.path != old.path { - bail!("path to the compiler has changed") + bail!("path to the source has changed") } if self.profile != old.profile { bail!("profile configuration has changed")