We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MAMBA_ROOT_PREFIX
-r
This issue was introduced by #3692:
In 2.0.5, -r took precedence over MAMBA_ROOT_PREFIX:
$ export MAMBA_ROOT_PREFIX=/tmp/envroot $ mamba create --debug -n foo --print-config-only | yq '. | .envs_dirs' [ "/tmp/envroot/envs" ] $ mamba create -r /tmp/cliroot --debug -n foo --print-config-only | yq '. | .envs_dirs' [ "/tmp/cliroot/envs" ]
but in 2.0.6:
$ mamba create -r /tmp/cliroot --debug -n foo --print-config-only | yq '. | .envs_dirs' [ "/tmp/envroot/envs", "/tmp/cliroot/envs" ]
Note that this only matters when /tmp/envroot/envs already exists.
/tmp/envroot/envs
Originally posted by @holzman in #3796 (comment)
The text was updated successfully, but these errors were encountered:
I added a parameter in a test case for this:
holzman@e7d1398
Sorry, something went wrong.
envs_dirs
Successfully merging a pull request may close this issue.
This issue was introduced by #3692:
In 2.0.5,
-r
took precedence overMAMBA_ROOT_PREFIX
:but in 2.0.6:
Note that this only matters when
/tmp/envroot/envs
already exists.Originally posted by @holzman in #3796 (comment)
The text was updated successfully, but these errors were encountered: