]> git.ipfire.org Git - thirdparty/git.git/commitdiff
contrib/contacts: rename .txt to .adoc
authorTodd Zullinger <tmz@pobox.com>
Sat, 1 Mar 2025 15:36:03 +0000 (10:36 -0500)
committerJunio C Hamano <gitster@pobox.com>
Sat, 1 Mar 2025 18:00:51 +0000 (10:00 -0800)
The .txt extensions were changed to .adoc in 1f010d6bdf (doc: use .adoc
extension for AsciiDoc files, 2025-01-20).

Do the same for contrib/contacts.

Signed-off-by: Todd Zullinger <tmz@pobox.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
contrib/contacts/Makefile
contrib/contacts/git-contacts.adoc [moved from contrib/contacts/git-contacts.txt with 100% similarity]
contrib/contacts/meson.build

index a2990f0dcb53b19ed2da8f18ffb1fa1125e5b38d..9c4ca4f3bcc7c26ddaff9166e2a7ab794654716d 100644 (file)
@@ -34,7 +34,7 @@ GIT_CONTACTS := git-contacts
 
 GIT_CONTACTS_DOC := git-contacts.1
 GIT_CONTACTS_XML := git-contacts.xml
-GIT_CONTACTS_TXT := git-contacts.txt
+GIT_CONTACTS_TXT := git-contacts.adoc
 GIT_CONTACTS_HTML := git-contacts.html
 
 doc: $(GIT_CONTACTS_DOC) $(GIT_CONTACTS_HTML)
index 6ec92f47c4399478eab5fccde0622d880e7eec7b..73d82dfe52b85f0498f518cebff030a255fa7ea3 100644 (file)
@@ -16,7 +16,7 @@ if get_option('docs').contains('man')
       '@INPUT@',
     ],
     depends: documentation_deps,
-    input: 'git-contacts.txt',
+    input: 'git-contacts.adoc',
     output: 'git-contacts.xml',
   )
 
@@ -47,7 +47,7 @@ if get_option('docs').contains('html')
       '@INPUT@',
     ],
     depends: documentation_deps,
-    input: 'git-contacts.txt',
+    input: 'git-contacts.adoc',
     output: 'git-contacts.html',
     install: true,
     install_dir: get_option('datadir') / 'doc/git-doc',