Two installer customization options, following the same convention as rustup and uv.
Installer customization
The curl | bash and irm | iex installers now honor two environment variables, set on the shell that runs the script:
| Variable | Effect |
|---|---|
NUB_INSTALL_DIR |
Install somewhere other than ~/.nub. nub upgrade updates a relocated install in place. |
NUB_NO_MODIFY_PATH |
Set truthy (1/yes/true/on) to skip the shell-profile edit; the script prints the PATH line to add yourself. |
curl -fsSL https://nubjs.com/install.sh | NUB_INSTALL_DIR="$HOME/.local/nub" NUB_NO_MODIFY_PATH=1 bashWith neither variable set the installer behaves exactly as before. (#420)
Documentation
- A VS Code debugging guide for running programs through nub. (
d36dd82)
What's Changed
- feat(installer) supports basic setup customization by @daniele-orlando in #420
New Contributors
- @daniele-orlando made their first contribution in #420
Full Changelog: v0.4.10...v0.4.11