SDL: build: Fixed some references to renamed test-versioning.sh

From f648c000bd381c791f689d3bf73949f09baeaff7 Mon Sep 17 00:00:00 2001
From: "Ryan C. Gordon" <[EMAIL REDACTED]>
Date: Wed, 28 Sep 2022 09:37:21 -0400
Subject: [PATCH] build: Fixed some references to renamed test-versioning.sh

---
 .github/workflows/main.yml      | 2 +-
 build-scripts/update-version.sh | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 3cc78e135581..6837aee9cb9a 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -64,7 +64,7 @@ jobs:
     - name: Check that versioning is consistent
       # We only need to run this once: arbitrarily use the Linux/CMake build
       if: "runner.os == 'Linux' && ! matrix.platform.autotools"
-      run: ./test/versioning.sh
+      run: ./build-scripts/test-versioning.sh
     - name: Configure (CMake)
       if: "! matrix.platform.autotools"
       run: |
diff --git a/build-scripts/update-version.sh b/build-scripts/update-version.sh
index d7036959716a..fc247fd9d33e 100755
--- a/build-scripts/update-version.sh
+++ b/build-scripts/update-version.sh
@@ -78,8 +78,8 @@ perl -w -pi -e 's/(VALUE "ProductVersion", ")\d+, \d+, \d+/${1}'$MAJOR', '$MINOR
 echo "Regenerating configure script with new version..."
 ./autogen.sh |grep -v 'Now you are ready to run ./configure'
 
-echo "Running test/versioning.sh to verify changes..."
-./test/versioning.sh
+echo "Running build-scripts/test-versioning.sh to verify changes..."
+./build-scripts/test-versioning.sh
 
 echo "All done."
 echo "Run 'git diff' and make sure this looks correct, before 'git commit'."