diff options
author | Alberto Sartori <alberto.sartori@huawei.com> | 2024-05-21 10:28:28 +0200 |
---|---|---|
committer | Alberto Sartori <alberto.sartori@huawei.com> | 2024-05-21 14:33:18 +0200 |
commit | efe5a2e22bb48231d7a47e5af6a574bf8874442a (patch) | |
tree | c453e64910d165e9f4ea523785a3ea6a221a0af9 /src/buildtool/execution_engine/executor | |
parent | c22817065a44033007a740c597cc491cc8274510 (diff) | |
download | justbuild-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.hpp | 2 |
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()); |