You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
0 commit comments