Skip to content

Commit

Permalink
#61 compact
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Jul 23, 2024
1 parent a3b900b commit 7cd8e27
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions entry.sh
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,6 @@ done <<< "${INPUT_OPTIONS}"
"${INPUT_OUTPUT}/${name}.rich.xml"

# Build a summary HTML.
css=$(cat "${SELF}/target/css/main.css")
js=$(cat "${SELF}/target/js/main.js")
html=${INPUT_OUTPUT}/${name}-index.html
java -jar "${SELF}/target/saxon.jar" \
"-s:${INPUT_OUTPUT}/${name}.rich.xml" \
Expand All @@ -101,7 +99,7 @@ java -jar "${SELF}/target/saxon.jar" \
"fbe=$(cd "${SELF}" && bundle info fbe | head -1 | cut -f5 -d' ' | sed s/[\(\)]//g)" \
"name=${name}" \
"logo=${INPUT_LOGO}" \
"css=${css}" \
"js=${js}"
"css=$(cat "${SELF}/target/css/main.css")" \
"js=$(cat "${SELF}/target/js/main.js")"
echo "HTML generated at ${html}"
rm "${INPUT_OUTPUT}/${name}.rich.xml"

0 comments on commit 7cd8e27

Please sign in to comment.