fixed creation of links to branches for generated index.html

main
Andre Challier 2024-03-28 09:28:03 +01:00
parent 74daa3224c
commit d2e0165857
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ EOF
for branch_folder in "$BRANCHES_DIR"/*; do
branch_name=$(basename "$branch_folder")
if [ "$branch_name" != "assets" ] && [ -f "$branch_folder/index.html" ]; then
echo " <li><a href=\"$branch_name/index.html\">$branch_name</a></li>"
echo " <li><a href=\"branches/$branch_name/index.html\">$branch_name</a></li>"
fi
done