Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make bootstrap.sh more friendly to other shells. (#27392)
* Make bootstrap.sh more friendly to other shells. I found some CI systems trying to use dash, and that does not seem to work at all due to it not understanding '<<<' or `[[`. Dash is still not ok because overall because arguments to `.` do not get passed along, however it would work as a default. Changes: - loop using IFS (and set sh_word_split for ZSH) - replaced `[[` tests with `[` * Restyle * Remove quoting logic that breaks execution * Stop restyling bootstrap.sh * Fix path * Do not permanently alter zsh options, use local_options * update sh_word_split to shwordsplit. Both seem to work, the non-underscore seems more common in docs
- Loading branch information