nbigaouette / hygeia

Python toolchain manager 🐍
Apache License 2.0
68 stars 3 forks source link

Zsh attempts to parse versions passed to our commands #137

Open nbigaouette opened 4 years ago

nbigaouette commented 4 years ago

Zsh attempts to parse versions passed to our commands but then fails.

For example:

❯ hygeia select ~3.8
zsh: no such user or named directory: 3.8
❯ hygeia select =3.8.1
zsh: 3.8.1 not found

One has to quote the versions

❯ hygeia select "~3.8"
[...]
❯ hygeia select "=3.8.1"
[...]

Bash does not have this problem.