Skip to content

Commit 52057f4

Browse files
committed
Flip condition for when brief logging is used
1 parent 1c9908a commit 52057f4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

components/scripts/lib/build-scan-online.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,9 @@ fetch_build_scans_and_build_time_metrics() {
5959
local build_scan_urls=("$@")
6060

6161
local brief_logging
62-
if [[ "$build_cache_metrics_only" != 'build_cache_metrics_only' ]]; then
62+
if [[ "${build_cache_metrics_only}" == 'build_cache_metrics_only' ]]; then
6363
brief_logging="brief_logging"
64+
else
6465
info "Fetching build scan data"
6566
fi
6667

0 commit comments

Comments
 (0)