mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-09 02:24:03 +01:00
The installer forced PATH - this prevents PATH dynamically set by system, also forces any temporary user PATH that was set during installation to be recorded and used on every shell start.
It should be users conscious choice to manipulate PATH, a lot of users is not aware of this and do not even know if this good or not.
If users need to add something to PATH they should do it by adding it not overwriting system detected PATH:
PATH="$PATH:/user/custom/path"
or:
path+=( "/user/custom/path" )
|
||
|---|---|---|
| .. | ||
| check_for_upgrade.sh | ||
| install.sh | ||
| require_tool.sh | ||
| theme_chooser.sh | ||
| uninstall.sh | ||
| upgrade.sh | ||