Skip to content

Commit 5919f8d

Browse files
committed
Be explicit on how to interpret the data table
1 parent d18d90a commit 5919f8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

check-version.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ echo 'Checking that ALL changes are committed.'
2424
git status -s --ignore-submodules
2525
test -z "$(git status -s --ignore-submodules)"
2626

27-
echo 'Gathering current version, latest tag, and current HEAD commit info.'
2827
version_version="$(cat "$version_path")"
2928
changes_version="$(awk '/^[0-9]/ {print $0; exit}' "$changes_path")"
3029
config_opts="$(printf ' -c versionsort.suffix=-%s' alpha beta pre rc RC)"
@@ -33,6 +32,7 @@ head_sha="$(git rev-parse HEAD)"
3332
latest_tag_sha="$(git rev-parse "$latest_tag")"
3433

3534
# Display a table of all the current version, tag, and HEAD commit information.
35+
echo $'\nThe VERSION must be the same in all locations, and so must the HEAD and tag SHA'
3636
printf '%-14s = %s\n' 'VERSION file' "$version_version" \
3737
'changes.rst' "$changes_version" \
3838
'Latest tag' "$latest_tag" \

0 commit comments

Comments
 (0)