From 65da64b0eb23069bc24a0da00dfed9fdb84f4ee9 Mon Sep 17 00:00:00 2001
From: Sam Lantinga <[EMAIL REDACTED]>
Date: Wed, 31 Dec 2025 17:00:35 -0800
Subject: [PATCH] Print the SDL- strings that were found if validation failed
---
.github/workflows/release.yml | 1 +
1 file changed, 1 insertion(+)
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 4cd34e76f2fe3..b41807e75a20e 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -104,6 +104,7 @@ jobs:
set -e
if test "x$(strings /tmp/build/libSDL3.so.0 | grep SDL- | wc -l)" != x1; then
echo "SDL- string not found: must be present in SDL_REVISION"
+ strings /tmp/build/libSDL3.so.0 | grep SDL-
exit 1
fi