Skip to content

Commit 3db537e

Browse files
committed
CMake: Fix showing exit code when SBOM NTIA verification fails
The code was missing an escaped dollar sign. Pick-to: 6.8 6.9 Task-number: QTBUG-122899 Change-Id: I51bff0a128546085e9418682b540d92eacfdbbe4 Reviewed-by: Joerg Bornemann <[email protected]>
1 parent 2be51c6 commit 3db537e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmake/QtPublicSbomOpsHelpers.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,7 @@ function(_qt_internal_sbom_verify_ntia_compliant)
612612
RESULT_VARIABLE res
613613
)
614614
if(NOT res EQUAL 0)
615-
message(FATAL_ERROR \"SBOM NTIA verification failed: \{res}\")
615+
message(FATAL_ERROR \"SBOM NTIA verification failed: \${res}\")
616616
endif()
617617
")
618618

0 commit comments

Comments
 (0)