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
When the extended_default option is off and the icase option is on, selection of module versions after an advanced version specifier list is broken:
extended_default
icase
$ ml av ---------------- /path/to/modulefiles ----------------- foo/1.0 foo/1.2 foo/2.3 foo/3.5 foo/1.1 foo/2.1 foo/3.4 foo/4.2 $ ml av foo@:1.1,1.9:2.5,3.6: ---------------- /path/to/modulefiles ----------------- foo/1.0 foo/1.1 foo/2.1 foo/2.3 foo/4.2 $ ml config extended_default 0 $ ml av -i foo@:1.1,1.9:2.5,3.6: ---------------- /path/to/modulefiles ----------------- foo/1.0 foo/1.1 foo/4.2
In the above example we should obtain the same avail result whatever the extended_default and icase setup.
The text was updated successfully, but these errors were encountered:
720a976
No branches or pull requests
When the
extended_default
option is off and theicase
option is on, selection of module versions after an advanced version specifier list is broken:In the above example we should obtain the same avail result whatever the extended_default and icase setup.
The text was updated successfully, but these errors were encountered: