We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d6065b commit 73919f0Copy full SHA for 73919f0
components/scripts/lib/build-scan-online.sh
@@ -28,10 +28,10 @@ read_build_scan_metadata() {
28
29
# shellcheck disable=SC2034
30
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}"
+ project_names[run_num]="${project_name}"
+ base_urls[run_num]="${base_url}"
+ build_scan_urls[run_num]="${build_scan_url}"
+ build_scan_ids[run_num]="${build_scan_id}"
35
done <<< "${build_scan_metadata}"
36
fi
37
}
0 commit comments