diff options
| author | Junio C Hamano <gitster@pobox.com> | 2025-11-07 09:31:05 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2025-11-07 09:31:05 -0800 |
| commit | 30608eb744ed5714313f016f8dabdd2811e7cf7c (patch) | |
| tree | 8e1d8f2b34f127ede94724472bd14e235dde34e8 | |
| parent | Merge branch 'dk/meson-html-dir' into next (diff) | |
| parent | perl: also mark git-contacts executable (diff) | |
| download | git-next.tar.gz git-next.zip | |
Merge branch 'dk/make-git-contacts-executable' into nextnext
Building "git contacts" script (in contrib/) leaves the resulting
file unexecutable, which has been corrected.
* dk/make-git-contacts-executable:
perl: also mark git-contacts executable
| -rwxr-xr-x | generate-perl.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generate-perl.sh b/generate-perl.sh index 65f122ebfc..796d835932 100755 --- a/generate-perl.sh +++ b/generate-perl.sh @@ -30,7 +30,7 @@ sed -e '1{' \ "$INPUT" >"$OUTPUT" case "$INPUT" in -*.perl) +*.perl|*git-contacts) chmod a+x "$OUTPUT";; *) ;; |
