Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/MicroDexed/blame/commit/f707082624a850cb5458b65aeffebf51010e392e/third-party/ArduinoJson/extras/scripts/get-release-body.sh
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -eu
|
|
|
|
|
|
|
|
TAG="$1"
|
|
|
|
CHANGELOG="$2"
|
|
|
|
|
|
|
|
cat << END
|
|
|
|
## Changes
|
|
|
|
|
|
|
|
$(awk '/\* /{ FOUND=1; print; next } { if (FOUND) exit}' "$CHANGELOG")
|
|
|
|
|
|
|
|
[View version history](https://github.com/bblanchon/ArduinoJson/blob/$TAG/CHANGELOG.md)
|
|
|
|
END
|