Skip to content

Commit

Permalink
Issue #382 Add parentAA to fullVT so that it gets passed to spider_de…
Browse files Browse the repository at this point in the history
…coration hook
  • Loading branch information
Robert McLay committed Jan 21, 2022
1 parent 9287c3b commit e5cf05f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
6 changes: 5 additions & 1 deletion README.new
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,8 @@ Lmod 8.6+
setting FPATH
* Issue #553: Update env_modules_python.py.
* Issue #554: fixed source_sh of spack setup-env.sh script.

(8.6.6) * Issue #555: Remove export SUPPORT_KSH=no hack as it does not work. The file init/bash is
read during system startup (/etc/profile.d/*.sh) before user bash startup files are read
(~/.bashrc etc). Updated FAQ entry to say that bash users starting zsh must unset FPATH.
* Issue #382: Add parentAA to fullVT to pass to spider_decoration hook

3 changes: 2 additions & 1 deletion src/Spider.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1143,7 +1143,8 @@ function M._Level1(self, dbT, providedByT, possibleA, sn, key, helpFlg)
if (fullVT[kk] == nil) then
key = sn
Description = v.Description
fullVT[kk] = { fullName = v.fullName, Category = v.Category, propT = v.propT }
fullVT[kk] = { fullName = v.fullName, Category = v.Category,
propT = v.propT, parentAA = v.parentAA }
end
if (kk > kk0) then
kk0 = kk
Expand Down

0 comments on commit e5cf05f

Please sign in to comment.