Skip to content

Commit 9ddfd85

Browse files
committed
fixed typos
1 parent bdf9a48 commit 9ddfd85

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libmamba/src/core/activation.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1248,7 +1248,7 @@ namespace mamba
12481248

12491249
if (!env_transform.export_path.empty())
12501250
{
1251-
out << "PATH = " << env_transform.export_path << util:on_win ? ';' : ':';
1251+
out << "PATH = " << env_transform.export_path << (util::on_win ? ';' : ':');
12521252
}
12531253

12541254
for (const fs::u8path& ds : env_transform.deactivate_scripts)
@@ -1269,7 +1269,7 @@ namespace mamba
12691269
for (const auto& [ekey, evar] : env_transform.export_vars)
12701270
{
12711271
// add unix or windows handling
1272-
out << ekey << " = " << evar << util:on_win ? ';' : ':';
1272+
out << ekey << " = " << evar << (util::on_win ? ';' : ':');
12731273
}
12741274
for (const fs::u8path& p : env_transform.activate_scripts)
12751275
{

0 commit comments

Comments
 (0)