aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/howto/howto-index.sh
diff options
context:
space:
mode:
authorTodd Zullinger <tmz@pobox.com>2025-03-01 10:36:02 -0500
committerJunio C Hamano <gitster@pobox.com>2025-03-01 10:00:51 -0800
commit41c793eae900e632dbc73ec7f900ea1e7d38aa92 (patch)
treeb00b5c50a85078062a5c4e1e76f19fb7dcaa865a /Documentation/howto/howto-index.sh
parent2a1530a953cc4d2ae62416db86c545c7ccb73ace (diff)
downloadgit-41c793eae900e632dbc73ec7f900ea1e7d38aa92.tar.gz
doc: update howto-index.sh for .adoc extensions
The .txt extensions were changed to .adoc in 1f010d6bdf (doc: use .adoc extension for AsciiDoc files, 2025-01-20). This left broken links in the generated howto-index.html. Signed-off-by: Todd Zullinger <tmz@pobox.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/howto/howto-index.sh')
-rwxr-xr-xDocumentation/howto/howto-index.sh14
1 files changed, 7 insertions, 7 deletions
diff --git a/Documentation/howto/howto-index.sh b/Documentation/howto/howto-index.sh
index eecd123a93..ace49830a8 100755
--- a/Documentation/howto/howto-index.sh
+++ b/Documentation/howto/howto-index.sh
@@ -9,9 +9,9 @@ people describing how they use Git in their workflow.
EOF
-for txt
+for adoc
do
- title=$(expr "$txt" : '.*/\(.*\)\.txt$')
+ title=$(expr "$adoc" : '.*/\(.*\)\.adoc$')
from=$(sed -ne '
/^$/q
/^From:[ ]/{
@@ -21,7 +21,7 @@ do
s/^/by /
p
}
- ' "$txt")
+ ' "$adoc")
abstract=$(sed -ne '
/^Abstract:[ ]/{
@@ -39,13 +39,13 @@ do
x
p
q
- }' "$txt")
+ }' "$adoc")
- if grep 'Content-type: text/asciidoc' >/dev/null $txt
+ if grep 'Content-type: text/asciidoc' >/dev/null $adoc
then
- file=$(expr "$txt" : '\(.*\)\.txt$').html
+ file=$(expr "$adoc" : '\(.*\)\.adoc$').html
else
- file="$txt"
+ file="$adoc"
fi
echo "* link:howto/$(basename "$file")[$title] $from