You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Persist devbox binary version in shell session if version is pinned (#459)
## Summary
TLDR; Persist devbox binary version in shell session if version is
pinned, by whitelisting `DEVBOX_USE_VERSION` as an env variable to keep
in devbox shell.
Currently, if a user pin a devbox version to use via
`DEVBOX_USE_VERSION=0.1.2 devbox shell`, inside the shell, any devbox
command will use the latest version instead of the pinned `0.1.2`
version.
This change makes sure that the devbox version inside a devbox shell is
the same as the one outside, if pinned.
## How was it tested?
`DEVBOX_USE_VERSION=0.1.2 devbox shell`
in devbox shell
`devbox version` -> it should output `0.1.2` instead of `0.2.0`
0 commit comments