diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-10-29 14:48:37 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-10-29 14:48:37 -0400 |
commit | 07e605078f85dc5bcf149d6a67d2d2b822467dff (patch) | |
tree | 52a67281934b9a89db60a741b1a0a24d4b4efd7e | |
parent | 7062ce2ffaf439e611c0f3840b4b1974c712d2c6 (diff) |
Webhook prints individual unnamed symbols (max 20 lines) since there are so few left
-rwxr-xr-x | .travis/webhook.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis/webhook.sh b/.travis/webhook.sh index 49a9a471..cd41fc91 100755 --- a/.travis/webhook.sh +++ b/.travis/webhook.sh @@ -4,7 +4,7 @@ set -e root="$(readlink -e "$(dirname "$0")/..")" # Report unnamed symbols -content="$("$root/tools/unnamed.py" -r "$root" "$root/pokegold.sym" | head)" +content="$("$root/tools/unnamed.py" "$root/pokegold.sym" | head -n 20)" curl -H 'Content-Type: application/json' -X POST "$POKEGOLD_DISCORD_WEBHOOK_URL" -d@- << EOF { |