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

Revert "Fix find_moose_executable utility" #29638

Merged
merged 1 commit into from
Jan 3, 2025
Merged
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
2 changes: 1 addition & 1 deletion python/mooseutils/mooseutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def find_moose_executable(loc, **kwargs):
exe_name = os.path.join(loc, name + '-' + method)
if os.path.isfile(exe_name):
exe = exe_name
break
break
dschwen marked this conversation as resolved.
Show resolved Hide resolved

# Returns the executable or error code
if (exe is None) and show_error:
Expand Down