bug in finding modules
The matching in find_modulefile() is wrong. Instead of
if [[ :${fm_rel_stage}: =~ :${UsedReleaseStages}: ]]; then
it has to be
if [[ :${UsedReleaseStages}: =~ :${fm_rel_stage}: ]]; then
Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.
gitlab.psi.ch will be shutdown by end of November! Please migrate repositories to https://gitea.psi.ch - if you need help, contact gitea@psi.ch
The matching in find_modulefile() is wrong. Instead of
if [[ :${fm_rel_stage}: =~ :${UsedReleaseStages}: ]]; then
it has to be
if [[ :${UsedReleaseStages}: =~ :${fm_rel_stage}: ]]; then