maint/release.pl: Fix CHANGES version check
We no longer use git.mpich.org shortlog links. Just verify that the most recent CHANGES header matches what the user gave.
Esse commit está contido em:
+2
-2
@@ -185,8 +185,8 @@ if ("$current_ver" ne "$version\n") {
|
||||
print("\tWARNING: maint/version does not match user version\n\n");
|
||||
}
|
||||
|
||||
my $changes_ver = `git show ${branch}:CHANGES | grep "http://git.mpich.org/mpich.git/shortlog" | \
|
||||
sed -e '2,\$d' -e 's/.*\.\.//g'`;
|
||||
my $changes_ver = `git show ${branch}:CHANGES | grep -m 1 "Changes in" | \
|
||||
awk '{print \$3}'`;
|
||||
if ("$changes_ver" ne "$version\n") {
|
||||
print("\tWARNING: CHANGES/version does not match user version\n\n");
|
||||
}
|
||||
|
||||
Referência em uma Nova Issue
Bloquear um usuário