about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/tools/build_helper/src/drop_bomb/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/build_helper/src/drop_bomb/mod.rs b/src/tools/build_helper/src/drop_bomb/mod.rs
index 2dd4a6bee26..0a5bb04b55b 100644
--- a/src/tools/build_helper/src/drop_bomb/mod.rs
+++ b/src/tools/build_helper/src/drop_bomb/mod.rs
@@ -45,7 +45,7 @@ impl Drop for DropBomb {
     fn drop(&mut self) {
         if !self.defused && !std::thread::panicking() {
             panic!(
-                "command constructed but not executed at {}: `{}`",
+                "command constructed at `{}` was dropped without being executed: `{}`",
                 self.armed_location,
                 self.command.to_string_lossy()
             )