Skip to content

Commit 509a55c

Browse files
authored
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
1 parent 9d20e29 commit 509a55c

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

.restyled.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ exclude:
8080
- "zzz_generated/**/*" # already clang-formatted by our zap tooling
8181
- "src/controller/java/generated/java/**/*" # not formatted: generated files
8282
- "src/controller/java/zap-generated/**/*" # not formatted: generated files
83+
- "scripts/setup/bootstrap.sh" # tries to quote loop variable
8384

8485

8586
changed_paths:

scripts/setup/bootstrap.sh

+9-6
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ _install_additional_pip_requirements() {
1919
shift
2020

2121
# figure out additional pip install items
22-
while [[ $# -gt 0 ]]; do
22+
while [ $# -gt 0 ]; do
2323
case $1 in
2424
-p | --platform)
2525
_SETUP_PLATFORM=$2
@@ -32,13 +32,14 @@ _install_additional_pip_requirements() {
3232
esac
3333
done
3434

35-
if ! [ -z "$_SETUP_PLATFORM" ]; then
35+
if [ -n "$_SETUP_PLATFORM" ]; then
36+
_OLD_IFS=$IFS
37+
IFS=","
3638
if [ -n "$ZSH_VERSION" ]; then
37-
IFS="," read -r -A _PLATFORMS <<<"$_SETUP_PLATFORM"
38-
else
39-
IFS="," read -r -a _PLATFORMS <<<"$_SETUP_PLATFORM"
39+
setopt local_options shwordsplit
4040
fi
41-
for platform in "${_PLATFORMS[@]}"; do
41+
42+
for platform in ${_SETUP_PLATFORM}; do
4243
# Allow none as an alias of nothing extra installed (like -p none)
4344
if [ "$platform" != "none" ]; then
4445
echo "Installing pip requirements for $platform..."
@@ -47,6 +48,8 @@ _install_additional_pip_requirements() {
4748
-c "$_CHIP_ROOT/scripts/setup/constraints.txt"
4849
fi
4950
done
51+
IFS=$_OLD_IFS
52+
unset _OLD_IFS
5053
unset _PLATFORMS
5154
fi
5255

0 commit comments

Comments
 (0)