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

(cherry picked from commit f648c000bd)
This commit is contained in:
Ryan C. Gordon 2022-09-28 09:37:21 -04:00
parent d1b2f1ebb5
commit 0733ef7e3f
No known key found for this signature in database
GPG key ID: FA148B892AB48044
2 changed files with 3 additions and 3 deletions

View file

@ -64,7 +64,7 @@ jobs:
- name: Check that versioning is consistent - name: Check that versioning is consistent
# We only need to run this once: arbitrarily use the Linux/CMake build # We only need to run this once: arbitrarily use the Linux/CMake build
if: "runner.os == 'Linux' && ! matrix.platform.autotools" if: "runner.os == 'Linux' && ! matrix.platform.autotools"
run: ./test/versioning.sh run: ./build-scripts/test-versioning.sh
- name: Configure (CMake) - name: Configure (CMake)
if: "! matrix.platform.autotools" if: "! matrix.platform.autotools"
run: | run: |

View file

@ -78,8 +78,8 @@ perl -w -pi -e 's/(VALUE "ProductVersion", ")\d+, \d+, \d+/${1}'$MAJOR', '$MINOR
echo "Regenerating configure script with new version..." echo "Regenerating configure script with new version..."
./autogen.sh |grep -v 'Now you are ready to run ./configure' ./autogen.sh |grep -v 'Now you are ready to run ./configure'
echo "Running test/versioning.sh to verify changes..." echo "Running build-scripts/test-versioning.sh to verify changes..."
./test/versioning.sh ./build-scripts/test-versioning.sh
echo "All done." echo "All done."
echo "Run 'git diff' and make sure this looks correct, before 'git commit'." echo "Run 'git diff' and make sure this looks correct, before 'git commit'."