Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: feb8501f9c7bf1255c34f539a92bc1573ea01acb
      
https://github.com/WebKit/WebKit/commit/feb8501f9c7bf1255c34f539a92bc1573ea01acb
  Author: Fujii Hironori <[email protected]>
  Date:   2024-07-30 (Tue, 30 Jul 2024)

  Changed paths:
    M Tools/Scripts/prepare-ChangeLog

  Log Message:
  -----------
  prepare-ChangeLog fails to extract function names from changed files with 
Windows Perl
https://bugs.webkit.org/show_bug.cgi?id=277243

Reviewed by Jonathan Bedard.

There were two problems.

1. "git show HEAD:path" doesn't take a Windows style backslash delimited file 
path.
Use a Unix style slash delimited path.

2. open FH, "-| git show HEAD:'$path'" doesn't quote $path as expected.
Use a command array instead of a command string.
> open FH, "-|", "git", "show", "HEAD:$path";

* Tools/Scripts/prepare-ChangeLog:

Canonical link: https://commits.webkit.org/281589@main



To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to