summaryrefslogtreecommitdiff
path: root/src/buildtool/execution_engine/executor
diff options
context:
space:
mode:
authorAlberto Sartori <alberto.sartori@huawei.com>2024-05-21 10:28:28 +0200
committerAlberto Sartori <alberto.sartori@huawei.com>2024-05-21 14:33:18 +0200
commitefe5a2e22bb48231d7a47e5af6a574bf8874442a (patch)
treec453e64910d165e9f4ea523785a3ea6a221a0af9 /src/buildtool/execution_engine/executor
parentc22817065a44033007a740c597cc491cc8274510 (diff)
downloadjustbuild-efe5a2e22bb48231d7a47e5af6a574bf8874442a.tar.gz
executor.hpp: fix a typo
Diffstat (limited to 'src/buildtool/execution_engine/executor')
-rw-r--r--src/buildtool/execution_engine/executor/executor.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildtool/execution_engine/executor/executor.hpp b/src/buildtool/execution_engine/executor/executor.hpp
index a228fd24..b7eb98cf 100644
--- a/src/buildtool/execution_engine/executor/executor.hpp
+++ b/src/buildtool/execution_engine/executor/executor.hpp
@@ -615,7 +615,7 @@ class ExecutorImpl {
std::ostringstream msg{};
msg << "Failed to execute command ";
msg << nlohmann::json(action->Command()).dump();
- msg << " in evenironment ";
+ msg << " in environment ";
msg << nlohmann::json(action->Env()).dump();
auto const& origin_map = progress->OriginMap();
auto origins = origin_map.find(action->Content().Id());