Skip to content

Commit

Permalink
Resolve shellcheck SC2086 warning
Browse files Browse the repository at this point in the history
Add double quotes about JJOB invocation in the new
rocoto job scripts to resolve shellcheck warning.

Refs NOAA-EMC#1908
  • Loading branch information
KateFriedman-NOAA committed Oct 26, 2023
1 parent 89f151f commit b9f0f36
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion jobs/rocoto/verfozn.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export jobid="${job}.$$"
echo
echo "=============== START TO RUN OZMON DATA EXTRACTION ==============="

${HOMEgfs}/jobs/JGDAS_ATMOS_VERFOZN
"${HOMEgfs}/jobs/JGDAS_ATMOS_VERFOZN"
status=$?

exit "${status}"
2 changes: 1 addition & 1 deletion jobs/rocoto/verfrad.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export jobid="${job}.$$"
echo
echo "=============== START TO RUN RADMON DATA EXTRACTION ==============="

${HOMEgfs}/jobs/JGDAS_ATMOS_VERFRAD
"${HOMEgfs}/jobs/JGDAS_ATMOS_VERFRAD"
status=$?

exit "${status}"
2 changes: 1 addition & 1 deletion jobs/rocoto/vminmon.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export jobid="${job}.$$"
echo
echo "=============== START TO RUN MINMON ==============="

${HOMEgfs}/jobs/J${RUN^^}_ATMOS_VMINMON
"${HOMEgfs}/jobs/J${RUN^^}_ATMOS_VMINMON"
status=$?

exit "${status}"

0 comments on commit b9f0f36

Please sign in to comment.