diff options
author | EuAndreh <eu@euandre.org> | 2021-06-06 09:30:19 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-06-06 09:30:19 -0300 |
commit | 81643ca1677593291d2024ace4f25b2885c888d4 (patch) | |
tree | cf9461f047dac5c0612c097b3dfc9ef83d04bf91 /aux/workflow/README.sh | |
parent | src/remembering.sh: Use tabs for separating options columns (diff) | |
download | remembering-81643ca1677593291d2024ace4f25b2885c888d4.tar.gz remembering-81643ca1677593291d2024ace4f25b2885c888d4.tar.xz |
aux/: Use tabs over spaces for .sh files
Diffstat (limited to 'aux/workflow/README.sh')
-rwxr-xr-x | aux/workflow/README.sh | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/aux/workflow/README.sh b/aux/workflow/README.sh index d0bb6ff..51ab5bf 100755 --- a/aux/workflow/README.sh +++ b/aux/workflow/README.sh @@ -9,13 +9,13 @@ MAILING_LIST="$3" RELEASES_LIST="$(mktemp)" for version in $(git tag | perl -e 'print reverse <>'); do - echo "- version [$version](https://git.euandreh.xyz/$PROJECT/snapshot/$PROJECT-$version.tar.gz) ([sig](https://git.euandreh.xyz/$PROJECT/snapshot/$PROJECT-$version.tar.gz.asc)), released in $(git log -1 --format=%cd --date=short "$version")" >> "$RELEASES_LIST" + echo "- version [$version](https://git.euandreh.xyz/$PROJECT/snapshot/$PROJECT-$version.tar.gz) ([sig](https://git.euandreh.xyz/$PROJECT/snapshot/$PROJECT-$version.tar.gz.asc)), released in $(git log -1 --format=%cd --date=short "$version")" >> "$RELEASES_LIST" done RELEASES="$(mktemp)" if [ -s "$RELEASES_LIST" ]; then - printf '\n# Releases\n\n' >> "$RELEASES" - cat "$RELEASES_LIST" >> "$RELEASES" + printf '\n# Releases\n\n' >> "$RELEASES" + cat "$RELEASES_LIST" >> "$RELEASES" fi LINKS="$(mktemp)" @@ -32,13 +32,14 @@ cat <<EOF > "$LINKS" EOF cat "README.md" "$LINKS" "$RELEASES" | \ - pandoc --toc \ - --highlight-style pygments \ - --toc-depth=2 \ - -s \ - --metadata title="$PROJECT_UC - README" \ - --metadata lang=en \ - -r commonmark \ - -w html \ - -H aux/workflow/favicon.html \ - > public/index.html + pandoc \ + --toc \ + --highlight-style pygments \ + --toc-depth=2 \ + -s \ + --metadata title="$PROJECT_UC - README" \ + --metadata lang=en \ + -r commonmark \ + -w html \ + -H aux/workflow/favicon.html \ + > public/index.html |