We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d68ba1a commit efc046cCopy full SHA for efc046c
SPEC.md
@@ -3321,7 +3321,7 @@ task greet_person {
3321
printf "Hello ~{person.name.first}! You have ~{length(assay_array)} test result(s) available.\n"
3322
3323
if ~{defined(person.income)}; then
3324
- if [ "~{select_first([person.income]).amount}" -gt 1000 ]; then
+ if [ "$(printf "%.0f" ~{select_first([person.income]).amount})" -gt 1000 ]; then
3325
currency="~{select_first([select_first([person.income]).currency, "USD"])}"
3326
printf "Please transfer $currency 500 to continue"
3327
fi
0 commit comments