about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-02-19 15:50:33 -0500
committerJune McEnroe <june@causal.agency>2021-02-19 15:50:33 -0500
commit79d9a71a6e69323827398ab04c26fc8979e11612 (patch)
treeb6f8c57ddfb946c97c945549826aade848cb4380
parentAdd --idle to git-fetch-email (diff)
downloadimbox-79d9a71a6e69323827398ab04c26fc8979e11612.tar.gz
imbox-79d9a71a6e69323827398ab04c26fc8979e11612.zip
Pipe move fetch after apply to /dev/null
-rw-r--r--git-fetch-email.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-fetch-email.sh b/git-fetch-email.sh
index 485f19d..cb3969c 100644
--- a/git-fetch-email.sh
+++ b/git-fetch-email.sh
@@ -122,7 +122,7 @@ if [ -n "${apply}" ]; then
 	status=$?
 	if [ $status -eq 0 ] && [ -n "${applyMove}" ]; then
 		move=$applyMove
-		fetch
+		fetch >/dev/null
 	fi
 	exit $status
 else