Skip to content

Commit 222e09e

Browse files
committed
Fix typo in debug log text
1 parent 5d2b86c commit 222e09e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/actions/set_env.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ bool SetENV::evaluate(RuleWithActions *rule, Transaction *t) {
3535
std::string colNameExpanded(m_string->evaluate(t));
3636

3737
auto pair = utils::string::ssplit_pair(colNameExpanded, '=');
38-
ms_dbg_a(t, 8, "Setting envoriment variable: "
38+
ms_dbg_a(t, 8, "Setting environment variable: "
3939
+ pair.first + " to " + pair.second);
4040
setenv(pair.first.c_str(), pair.second.c_str(), /*overwrite*/ 1);
4141

0 commit comments

Comments
 (0)