Replace instances of Blaze with Bazel.

PiperOrigin-RevId: 203300374

Change-Id: Iaa47f870ab2e0cad40a202aad2c7f9430f73c856
PiperOrigin-RevId: 203407392
diff --git a/src/main/java/com/google/devtools/build/lib/buildtool/ExecutionTool.java b/src/main/java/com/google/devtools/build/lib/buildtool/ExecutionTool.java
index be502c6..2e61ef8 100644
--- a/src/main/java/com/google/devtools/build/lib/buildtool/ExecutionTool.java
+++ b/src/main/java/com/google/devtools/build/lib/buildtool/ExecutionTool.java
@@ -587,8 +587,10 @@
       // caches.
       LoggingUtil.logToRemote(Level.WARNING, "Failed to initialize action cache: "
           + e.getMessage(), e);
-      throw new LocalEnvironmentException("couldn't create action cache: " + e.getMessage()
-          + ". If error persists, use 'blaze clean'");
+      throw new LocalEnvironmentException(
+          "couldn't create action cache: "
+              + e.getMessage()
+              + ". If error persists, use 'bazel clean'");
     }
   }