[Tools] git-commit uses wrong ChangeLog when run from a subdirectory
Created attachment 238548 [details] Patch
Created attachment 238549 [details] Patch
Comment on attachment 238548 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=238548&action=review r=me! > Tools/Scripts/commit-log-editor:155 > +@changeLogs = map { $ENV{GIT_PREFIX} . $_} @changeLogs if (isGit()); Nit: Should have a space at the end of the inside block Nit: Unnecessary parens around the if condition when it is at the end of the line: @changeLogs = map { $ENV{GIT_PREFIX} . $_ } @changeLogs if isGit();
Committed r173887: <http://trac.webkit.org/changeset/173887>