Later versions of Toot removed the --quiet flag, so use redirect to /dev/null now.

This commit is contained in:
Storm Dragon 2024-02-03 01:30:44 -05:00
parent 564835b4ac
commit 300ba28d73
1 changed files with 2 additions and 2 deletions

View File

@ -18,6 +18,6 @@ pusher="$(git log | grep -m1 "Author: ")"
pusher="${pusher#Author: }"
pusher="${pusher% <*@*.*>}"
toot post --quiet -v public -p "$project" -t "text/markdown" "$pusher pushed changes to the $branch branch of the [$project project]($url)
$commit"
toot post -v public -p "$project" -t "text/markdown" "$pusher pushed changes to the $branch branch of the [$project project]($url)
$commit" &> /dev/null
exit 0