Commit 02e832d
authored
Fix unexpected subshell execution in bootstrap.sh (#678)
For `(list)` in bash, `list` is executed in a subshell environment. Variable assignments do not remain in effect after the command completes.
Fix by using `{ list; }`, where `list` is executed in the current shell environment.1 parent 9eda5e2 commit 02e832d
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
108 | 108 | | |
109 | 109 | | |
110 | 110 | | |
111 | | - | |
| 111 | + | |
112 | 112 | | |
113 | 113 | | |
114 | 114 | | |
| |||
0 commit comments