Changeset 89196 in webkit
- Timestamp:
- Jun 18, 2011, 12:33:28 PM (14 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r89195 r89196 1 2011-06-18 Berend-Jan Wever <skylined@chromium.org> 2 3 Reviewed by Eric Seidel. 4 5 Some names with spaces are incorrectly reported as not containing spaces 6 while running prepare-ChangeLog 7 https://bugs.webkit.org/show_bug.cgi?id=55572 8 9 * Scripts/VCSUtils.pm: Updated CHANGE_LOG_NAME check for spaces to allow 10 non-alphanumeric characters in names. 11 1 12 2011-06-18 Michael Saboff <msaboff@apple.com> 2 13 -
trunk/Tools/Scripts/VCSUtils.pm
r87641 r89196 1766 1766 changeLogNameError("Failed to determine ChangeLog name.") unless $name; 1767 1767 # getpwuid seems to always succeed on windows, returning the username instead of the full name. This check will catch that case. 1768 changeLogNameError("'$name' does not contain a space! ChangeLogs should contain your full name.") unless ($name =~ /\ w \w/);1768 changeLogNameError("'$name' does not contain a space! ChangeLogs should contain your full name.") unless ($name =~ /\S\s\S/); 1769 1769 1770 1770 return $name;
Note:
See TracChangeset
for help on using the changeset viewer.