commit 6767b07b7b7c57ac67434eca91e6dccd3b43c381 parent 0214c0bbb19a017616000f92b7fd5e0a2812b28f Author: JayVii <jayvii[AT]posteo[DOT]de> Date: Sat, 27 Apr 2024 16:27:33 +0200 fix typo Diffstat:
M | bin/git_update_repo_html.sh | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bin/git_update_repo_html.sh b/bin/git_update_repo_html.sh @@ -27,7 +27,7 @@ if [ -z $(find "${1}/${2}/${3}/file/" -type f -name "README*.html") ]; then ln -sf "${1}/${2}/${3}/log.html" "${1}/${2}/${3}/index.html" else # use readme as index - file "file/" -type f -name "README*.html" -exec cp {} "index.html" \; + find "file/" -type f -name "README*.html" -exec cp {} "index.html" \; # adjust relative paths accordingly sed -e 's/\.\.\///g' -i "index.html" fi