File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1248,7 +1248,7 @@ namespace mamba
1248
1248
1249
1249
if (!env_transform.export_path .empty ())
1250
1250
{
1251
- out << " PATH = " << env_transform.export_path << util:on_win ? ' ;' : ' :' ;
1251
+ out << " PATH = " << env_transform.export_path << ( util:: on_win ? ' ;' : ' :' ) ;
1252
1252
}
1253
1253
1254
1254
for (const fs::u8path& ds : env_transform.deactivate_scripts )
@@ -1269,7 +1269,7 @@ namespace mamba
1269
1269
for (const auto & [ekey, evar] : env_transform.export_vars )
1270
1270
{
1271
1271
// add unix or windows handling
1272
- out << ekey << " = " << evar << util:on_win ? ' ;' : ' :' ;
1272
+ out << ekey << " = " << evar << ( util:: on_win ? ' ;' : ' :' ) ;
1273
1273
}
1274
1274
for (const fs::u8path& p : env_transform.activate_scripts )
1275
1275
{
You can’t perform that action at this time.
0 commit comments