Skip to content

Commit

Permalink
modified jobs\JGLOBAL_ARCHIVE
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonMFernando-NOAA committed Jan 11, 2025
1 parent b8e9ffd commit e8b4123
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions jobs/JGLOBAL_ARCHIVE
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ if [[ -n "${wavepostGRD}" || -n "${waveinterpGRD}" ]]; then
else
echo "Both wavepostGRD and waveinterpGRD are empty. No grids to process."
fi
gNAME="${gNAME[*]}"
gRES="${gRES[*]}"
gCOM="${gCOM[*]}"
gNAME={"${gNAME[*]}"}

Check warning

Code scanning / shellcheck

Variable was used as an array but is now assigned a string. Warning

Variable was used as an array but is now assigned a string.

Check warning

Code scanning / shellcheck

This { is literal. Check expression (missing ;/\n?) or quote it. Warning

This { is literal. Check expression (missing ;/\n?) or quote it.

Check warning

Code scanning / shellcheck

This } is literal. Check expression (missing ;/\n?) or quote it. Warning

This } is literal. Check expression (missing ;/\n?) or quote it.
gRES={"${gRES[*]}"}

Check warning

Code scanning / shellcheck

Variable was used as an array but is now assigned a string. Warning

Variable was used as an array but is now assigned a string.

Check warning

Code scanning / shellcheck

This { is literal. Check expression (missing ;/\n?) or quote it. Warning

This { is literal. Check expression (missing ;/\n?) or quote it.

Check warning

Code scanning / shellcheck

This } is literal. Check expression (missing ;/\n?) or quote it. Warning

This } is literal. Check expression (missing ;/\n?) or quote it.
gCOM={"${gCOM[*]}"}jobs\JGLOBAL_ARCHIVE

Check warning

Code scanning / shellcheck

Variable was used as an array but is now assigned a string. Warning

Variable was used as an array but is now assigned a string.

Check warning

Code scanning / shellcheck

This { is literal. Check expression (missing ;/\n?) or quote it. Warning

This { is literal. Check expression (missing ;/\n?) or quote it.

Check warning

Code scanning / shellcheck

This } is literal. Check expression (missing ;/\n?) or quote it. Warning

This } is literal. Check expression (missing ;/\n?) or quote it.

Check notice

Code scanning / shellcheck

This \J will be a regular 'J' in this context. Note

This \J will be a regular 'J' in this context.
export gNAME
export gRES
export gCOM
Expand Down

0 comments on commit e8b4123

Please sign in to comment.