Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/MicroDexed/src/commit/b4145a9e978c569dc7967440e7e608360a2cb865/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
|
|
|