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.
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