fivetran / dbt_salesforce_formula_utils

Package containing dbt macros to help generate salesforce formula fields synced from Fivetran.
https://fivetran.github.io/dbt_salesforce_formula_utils/
Apache License 2.0
16 stars 18 forks source link

[Feature] Simplify sfdc_formula_model_automation.sh #67

Closed khgouldy closed 1 year ago

khgouldy commented 1 year ago

Is there an existing feature request for this?

Describe the Feature

Hey team, great stuff! However, using sfdc_formula_model_automation.sh posed an issue with setopt: command not found I believe its due to zsh, which comes as default shell now for mac os.

Instead of

setopt shwordsplit
variable=($2)
for i in ${variable//,/ }

we can simplify to

variable=($2)
for i in "${variable[@]}"

Describe alternatives you've considered

No response

Are you interested in contributing this feature?

Anything else?

No response