Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

style: address shellcheck warnings #1993

Next Next commit
use $@ over $*. SC2048
I agree to license my contributions to each file under the terms given
at the top of each file I changed.
reubenmiller committed Mar 13, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit fd5ca3f09e3aea4ac6c106f631728a1f06711892
2 changes: 1 addition & 1 deletion mk/cargo.sh
Original file line number Diff line number Diff line change
@@ -43,7 +43,7 @@ if [ -n "${ANDROID_NDK_ROOT-}" ]; then
android_tools=${ANDROID_NDK_ROOT}/toolchains/llvm/prebuilt/linux-x86_64/bin
fi

for arg in $*; do
for arg in "$@"; do
case $arg in
--target=*)
target=${arg#*=}
2 changes: 1 addition & 1 deletion mk/check-symbol-prefixes.sh
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@
set -eux -o pipefail
IFS=$'\n\t'

for arg in $*; do
for arg in "$@"; do
case $arg in
--target=*)
target=${arg#*=}
2 changes: 1 addition & 1 deletion mk/install-build-tools.sh
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ set -eux -o pipefail
IFS=$'\n\t'

toolchain=stable
for arg in $*; do
for arg in "$@"; do
case $arg in
--target=*)
target=${arg#*=}