diff options
Diffstat (limited to 'aux/ci/report.sh')
-rwxr-xr-x | aux/ci/report.sh | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/aux/ci/report.sh b/aux/ci/report.sh index 1aa41a0..7fa3d08 100755 --- a/aux/ci/report.sh +++ b/aux/ci/report.sh @@ -41,7 +41,8 @@ for c in $(git notes list | cut -d\ -f2); do DATA="$(git notes --ref=refs/notes/ci-data show "$c")" FILENAME="$(echo "$DATA" | cut -d\ -f2)" echo "$DATA" > "$OUTDIR/ci-data/$FILENAME" - git notes --ref=refs/notes/ci-logs show "$c" > "$OUTDIR/ci-logs/$FILENAME" + git notes --ref=refs/notes/ci-logs show "$c" \ + > "$OUTDIR/ci-logs/$FILENAME" done cat <<EOF >> "$OUT" @@ -49,7 +50,8 @@ cat <<EOF >> "$OUT" <html lang="en"> <head> <meta charset="UTF-8" /> - <meta name="viewport" content="width=device-width, initial-scale=1" /> + <meta name="viewport" + content="width=device-width, initial-scale=1" /> <link rel="icon" type="image/svg+xml" href="favicon.svg" /> <title>CI logs for $PROJECT</title> @@ -61,7 +63,10 @@ cat <<EOF >> "$OUT" </head> <body> <h1> - CI logs for <a href="https://$TLD/$PROJECT/en/">$PROJECT</a> + CI logs for + <a href="https://$TLD/$PROJECT/en/"> + $PROJECT + </a> </h1> <ul> EOF |