fix: silence file not found

This commit is contained in:
Nuri Jung
2024-03-12 20:49:43 +09:00
parent 2b08e3eee2
commit fb6589f23f

3
_conda
View File

@@ -204,7 +204,7 @@ __conda_envs(){
# unmaned envs (if show-unammed).
if test -n "$unnamed"; then
envs+=($( (test -n "$unnamed" && cat ${HOME:?}/.conda/environments.txt) | cut -f1 -d' ' | sed -e "s|^${PWD}|.|" | sed -e "s|^$localenvspath/||"))
envs+=($( (cat ${HOME:?}/.conda/environments.txt) 2>/dev/null | cut -f1 -d' ' | sed -e "s|^${PWD}|.|" | sed -e "s|^$localenvspath/||"))
fi
_describe $describe_opts -t envs 'conda environments' envs
@@ -746,4 +746,3 @@ case $state in
esac
;;
esac