File tree 2 files changed +2
-2
lines changed
2 files 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 << " \n " ;
1251
+ out << " PATH = " << env_transform.export_path << (util::on_win ? ' ; ' : ' : ' ) << " \n " ;
1252
1252
}
1253
1253
1254
1254
for (const fs::u8path& ds : env_transform.deactivate_scripts )
@@ -1268,7 +1268,6 @@ namespace mamba
1268
1268
1269
1269
for (const auto & [ekey, evar] : env_transform.export_vars )
1270
1270
{
1271
- // add unix or windows handling
1272
1271
out << ekey << " = " << evar << " \n " ;
1273
1272
}
1274
1273
for (const fs::u8path& p : env_transform.activate_scripts )
Original file line number Diff line number Diff line change @@ -513,6 +513,7 @@ namespace mamba
513
513
| load-env
514
514
)
515
515
# update prompt
516
+ $env.CONDA_PROMPT_MODIFIER = "(" + $name + ")"
516
517
if ($env.CONDA_PROMPT_MODIFIER? != null) {
517
518
$env.PROMPT_COMMAND = {|| $env.CONDA_PROMPT_MODIFIER + (do $env.PROMPT_COMMAND_BK)}
518
519
}
You can’t perform that action at this time.
0 commit comments