diff options
| author | Junio C Hamano <gitster@pobox.com> | 2025-11-12 08:17:31 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2025-11-12 08:17:31 -0800 |
| commit | e65e955c0328f6e1c4a7764ae86bbc875805e694 (patch) | |
| tree | 0ac4d18ec732d72d6fc15b253df1e817ad4c007d | |
| parent | da5841b45c2b1cce79e0357218693061c2741780 (diff) | |
| parent | 38419bdd45e6fb872383f151b337f030ed30cbb4 (diff) | |
| download | git-e65e955c0328f6e1c4a7764ae86bbc875805e694.tar.gz | |
Merge branch 'dk/make-git-contacts-executable'
Building "git contacts" script (in contrib/) left 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";; *) ;; |
