Skip to content

Commit

Permalink
fix: modified actions.yml shell commands accordingly (#637)
Browse files Browse the repository at this point in the history
  • Loading branch information
moe-ad committed Nov 8, 2024
1 parent ff8dc37 commit 6f2baf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _doc-gen-sitemap/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ runs:
echo " <changefreq>weekly</changefreq>" >> $output
echo " <priority>0.5</priority>" >> $output
echo " </url>" >> $output
done < <(find "$input_dir" -type f -name "*.html" -print0)
done < <(find "$input_dir" -type f -name "*.html" ! -name "search.html" ! -name "genindex.html" -print0)
# Close the sitemap
echo "</urlset>" >> $output

0 comments on commit 6f2baf4

Please sign in to comment.