Skip to content

Commit cc94140

Browse files
Fix conda activate for conda>=25.11 (#1222)
1 parent 5b96d53 commit cc94140

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/virtual_environments/conda.nu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
export def --env activate [
33
env_name?: string@'nu-complete conda envs' # name of the environment
44
] {
5-
let conda_info = (conda info --envs --json | from json)
5+
let conda_info = (conda info --json | from json)
66

77
let env_name = if $env_name == null {
88
"base"

0 commit comments

Comments
 (0)