1
0
mirror of https://github.com/koalaman/shellcheck.git synced 2025-03-12 12:35:25 -07:00

Remove stray code block delimiter

Nikolaos Pothitos 2022-05-23 16:13:48 +03:00
parent 5e65335587
commit 5cb1586444

@ -59,4 +59,3 @@ This prevents the shell from doing unwanted splitting and glob expansion, and th
If you have already taken care (through setting IFS and `set -f`) to have word splitting work the way you intend, you can ignore this warning.
Another exception is the wish for error handling: `array=( $(mycommand) ) || die-with-error` works the way it looks while a similar `mapfile` construct like `mapfile -t array < <(mycommand)` **doesn't fail** and you will have to write more code for error handling.
```