We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
@aerorahul discovered a bug in ush/wave_grid_interp_sbs.sh which we have: if [ "wht_OK" = 'no' ]
if [ "wht_OK" = 'no' ]
which will never evaluate to true, but then if this is true, we try to copy to fix, which is not okay.....
We should figure out this code logic and re-code or remove, etc.
All or N/A
#3098
Make if [ "wht_OK" = 'no' ] -> if [ "${wht_OK}" = 'no' ]
if [ "${wht_OK}" = 'no' ]
No response
The text was updated successfully, but these errors were encountered:
JessicaMeixner-NOAA
No branches or pull requests
What is wrong?
@aerorahul discovered a bug in ush/wave_grid_interp_sbs.sh which we have:
if [ "wht_OK" = 'no' ]
which will never evaluate to true, but then if this is true, we try to copy to fix, which is not okay.....
What should have happened?
We should figure out this code logic and re-code or remove, etc.
What machines are impacted?
All or N/A
What global-workflow hash are you using?
#3098
Steps to reproduce
Make
if [ "wht_OK" = 'no' ]
->if [ "${wht_OK}" = 'no' ]
Additional information
No response
Do you have a proposed solution?
No response
The text was updated successfully, but these errors were encountered: