Skip to content

Commit

Permalink
relocated heron to new open repo (#1288)
Browse files Browse the repository at this point in the history
* relocated heron to new open repo

* python2 install all plugins compatability

* all caps for heron

* more capitalization things

* updated to windows-friendly solvers
  • Loading branch information
PaulTalbot-INL authored Aug 3, 2020
1 parent 1ecf7f3 commit 5d559eb
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
[submodule "plugins/SRAW"]
path = plugins/SRAW
url = [email protected]:RAVEN_PLUGINS/SRAW.git
[submodule "plugins/heron"]
path = plugins/heron
url = git@hpcgitlab.hpc.inl.gov:RAVEN_PLUGINS/heron.git
[submodule "plugins/HERON"]
path = plugins/HERON
url = git@github.com:idaholab/HERON.git
1 change: 1 addition & 0 deletions plugins/HERON
Submodule HERON added at 5ffd43
1 change: 0 additions & 1 deletion plugins/heron
Submodule heron deleted from cee70f
2 changes: 1 addition & 1 deletion scripts/plugin_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def updatePluginXML(root, name, location):
@ In, location, str, location of plugin on disk
@ Out, match, xml.etree.ElementTree.Element, updated element
"""
match = root.findall('./plugin/name[.=\'{}\']/..'.format(name))[0]
match = root.findall('./plugin/[name=\'{}\']'.format(name))[0]
oldPath = match.find('location').text
# nothing to do if old path and new path are the same!
if oldPath != location:
Expand Down

0 comments on commit 5d559eb

Please sign in to comment.