Skip to content

Commit 26ead3a

Browse files
committed
Fixes
1 parent f2e4e64 commit 26ead3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/pet-conda/src/environments.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ fn get_conda_env_name_from_history_file(env_path: &Path, prefix: &Path) -> Optio
209209
// # cmd: <conda install directory>\Scripts\conda-script.py create -n samlpe1
210210
// # cmd: <conda install directory>\Scripts\conda-script.py create -p <full path>
211211
// # cmd: /Users/donjayamanne/miniconda3/bin/conda create -n conda1
212-
if is_conda_env_name_in_cmd(line.into(), &name) {
212+
if is_conda_env_name_in_cmd(line, &name) {
213213
return Some(name);
214214
}
215215
}

0 commit comments

Comments
 (0)