Skip to content
New issue

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

relocated heron to new open repo #1288

Merged
merged 5 commits into from
Aug 3, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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