We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 808a3ef commit 2df4b42Copy full SHA for 2df4b42
.ci/scripts/setup-arm-baremetal-tools.sh
@@ -8,8 +8,8 @@
8
# Setup arm example environment (including TOSA tools)
9
git config --global user.email "[email protected]"
10
git config --global user.name "Github Executorch"
11
-if [[ -z "$#" || "$#" -eq 0 ]]; then
+if [[ "$#" -eq 0 ]]; then
12
bash examples/arm/setup.sh --i-agree-to-the-contained-eula
13
else
14
- bash examples/arm/setup.sh --i-agree-to-the-contained-eula "$#"
+ bash examples/arm/setup.sh --i-agree-to-the-contained-eula "$@"
15
fi
0 commit comments