aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/actions
diff options
context:
space:
mode:
authorGravatar Dan Fabulich <DanFabulich@gmail.com>2018-07-05 16:08:06 -0700
committerGravatar Copybara-Service <copybara-piper@google.com>2018-07-05 16:10:02 -0700
commit1d35ca03b8a1c431937a9be74a9efedc15b5707a (patch)
treef1f0c20ac99ec54c450de0d238d5213758c4cbe0 /src/main/java/com/google/devtools/build/lib/actions
parent2b62182c9854321396d7d287e8b645261d9cda82 (diff)
Replace instances of Blaze with Bazel.
PiperOrigin-RevId: 203300374 Change-Id: Iaa47f870ab2e0cad40a202aad2c7f9430f73c856 PiperOrigin-RevId: 203407392
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/actions')
-rw-r--r--src/main/java/com/google/devtools/build/lib/actions/InconsistentFilesystemException.java11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/actions/InconsistentFilesystemException.java b/src/main/java/com/google/devtools/build/lib/actions/InconsistentFilesystemException.java
index e0b0f9a1c6..680fbbc32d 100644
--- a/src/main/java/com/google/devtools/build/lib/actions/InconsistentFilesystemException.java
+++ b/src/main/java/com/google/devtools/build/lib/actions/InconsistentFilesystemException.java
@@ -21,9 +21,12 @@ import java.io.IOException;
*/
public class InconsistentFilesystemException extends IOException {
public InconsistentFilesystemException(String inconsistencyMessage) {
- super("Inconsistent filesystem operations. " + inconsistencyMessage + " The results of the "
- + "build are not guaranteed to be correct. You should probably run 'blaze clean' and "
- + "investigate the filesystem inconsistency (likely due to filesytem updates concurrent "
- + "with the build)");
+ super(
+ "Inconsistent filesystem operations. "
+ + inconsistencyMessage
+ + " The results of the "
+ + "build are not guaranteed to be correct. You should probably run 'bazel clean' and "
+ + "investigate the filesystem inconsistency (likely due to filesytem updates "
+ + "concurrent with the build)");
}
}