From 300ba28d739460f9fc0429126160908c5a0574bf Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Sat, 3 Feb 2024 01:30:44 -0500 Subject: [PATCH] Later versions of Toot removed the --quiet flag, so use redirect to /dev/null now. --- pre-push | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pre-push b/pre-push index d268b06..052609f 100755 --- a/pre-push +++ b/pre-push @@ -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