Ilya Sher
Ilya Sher
https://github.com/aws-samples/multi-branch-cdk-pipelines/blob/dac457d22679e28435b2224b328ac858ce0fb0ea/initial-deploy.sh#L4 1. Semantically incorrect 2. Produces `./config.ini: line 1: [general]: command not found` Additional notes: Use `set -e` or `set -eu` in the shell script?
Related: https://github.com/ngs-lang/ngs/issues/662
So that this: ``` sessions.each(F(s) { s.COMPUTE_STACK_PRESENT = if s.ComputeStackName then s.ComputeStackName in stacks_names }) ``` could become this: ``` sessions.COMPUTE_STACK_PRESENT = F(s) if s.ComputeStackName then s.ComputeStackName in stacks_names ```