Skip to content

Commit 73919f0

Browse files
committed
Address new style issues flagged by the updated Shellcheck version
Fixes [SC2004](https://www.shellcheck.net/wiki/SC2004).
1 parent 1d6065b commit 73919f0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: components/scripts/lib/build-scan-online.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ read_build_scan_metadata() {
2828

2929
# shellcheck disable=SC2034
3030
while IFS=, read -r run_num project_name base_url build_scan_url build_scan_id; do
31-
project_names[$run_num]="${project_name}"
32-
base_urls[$run_num]="${base_url}"
33-
build_scan_urls[$run_num]="${build_scan_url}"
34-
build_scan_ids[$run_num]="${build_scan_id}"
31+
project_names[run_num]="${project_name}"
32+
base_urls[run_num]="${base_url}"
33+
build_scan_urls[run_num]="${build_scan_url}"
34+
build_scan_ids[run_num]="${build_scan_id}"
3535
done <<< "${build_scan_metadata}"
3636
fi
3737
}

0 commit comments

Comments
 (0)