Skip to content

Commit

Permalink
Fix formatting issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
ormandi committed Oct 30, 2024
1 parent 8b0687b commit d191b08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion toolchain/osx_cc_wrapper.sh.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ function sanitize_option() {

cmd=()
for ((i = 0; i <= $#; i++)); do
if [[ ${!i} == @* && -r "${i:1}" ]]; then
if [[ ${!i} == @* && -r ${i:1} ]]; then
while IFS= read -r opt; do
if [[ ${opt} == "-fuse-ld=ld64.lld" ]]; then
cmd+=("-fuse-ld=lld")
Expand Down

0 comments on commit d191b08

Please sign in to comment.