pub / stagit-scripts

Building src.jayvii.de with stagit
git clone https://src.jayvii.de/pub/stagit-scripts.git
Home | Log | Files | Exports | Refs | README | RSS

commit 0d9d18a5d2bf517c112cf28b8bd3c06ccd9562c2
parent 269367c8b73cc2a5e79a63bca57998d6a70264eb
Author: JayVii <jayvii[AT]posteo[DOT]de>
Date:   Sun, 28 Apr 2024 18:52:12 +0200

fix syntax

Diffstat:
Mbin/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 @@ -48,7 +48,7 @@ find "${1}/${2}/${3}/" -type f -exec sed -E -e ${MAILEXP} -i {} \; # Add Exports to menu INJEXP="s/(>Log<\/a>)/\1 \| <a href=\"..\/${3}.exp\/\">Exports<\/a> /" -find "${1}/${2}/${3}/" -type f -name "*.html" -exec sed -E -e ${INJEXP} -i {} \; +find "${1}/${2}/${3}/" -type f -name "*.html" -exec sed -E "${INJEXP}" -i {} \; # link assets ln -sf "${1}/assets/style.css" "${1}/${2}/${3}/style.css"