Skip to content

Commit

Permalink
Fix link for README files into subdirectories
Browse files Browse the repository at this point in the history
  • Loading branch information
manoelcampos committed Sep 1, 2021
1 parent e1ef7ba commit f00e1b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ if [[ $INPUT_SLIDES_SKIP_ASCIIDOCTOR_BUILD == false ]]; then
find . -name "*$INPUT_ADOC_FILE_EXT" | xargs asciidoctor -b html $INPUT_ASCIIDOCTOR_PARAMS

for FILE in `find . -name "README.html"`; do
ln -s "$FILE" "`dirname $FILE`/index.html";
ln -s "README.html" "`dirname $FILE`/index.html";
done

for FILE in `find . -name "*.html"`; do
Expand Down

0 comments on commit f00e1b8

Please sign in to comment.