navapbc / template-infra

A template to set up foundational infrastructure for your application in AWS
Apache License 2.0
9 stars 2 forks source link

Change references to ="$(expression)" from =$(expression) in scripts #669

Open rocketnova opened 1 week ago

rocketnova commented 1 week ago

Related to be separate from #661. See examples in https://google.github.io/styleguide/shellguide.html#quoting

Example:

script_dir=$(dirname "$0")

Should become:

script_dir="$(dirname "$0")"