You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ah, I see, specifically FSL_FIX_MCR. We may not have tested compiled mode after that change. The other variables are defined by the script, so they shouldn't trip set -u (even if they are the empty string).
Dear the HCP team,
"set -u" was set at
HCPpipelines/ICAFIX/ReApplyFixPipeline.sh
Line 35 in 9f52e6b
and "if [ -z ${variable} ]" was used in the same file at multiple lines.
This raises an error if the variable is undefined. The ${variable} in the if line should be replaced with ${variable:-} like
HCPpipelines/ICAFIX/ReApplyFixPipeline.sh
Line 38 in 9f52e6b
Best,
Joo-won
The text was updated successfully, but these errors were encountered: