diff options
author | June McEnroe <june@causal.agency> | 2021-02-19 15:50:33 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-02-19 15:50:33 -0500 |
commit | 79d9a71a6e69323827398ab04c26fc8979e11612 (patch) | |
tree | b6f8c57ddfb946c97c945549826aade848cb4380 /git-fetch-email.sh | |
parent | Add --idle to git-fetch-email (diff) | |
download | imbox-79d9a71a6e69323827398ab04c26fc8979e11612.tar.gz imbox-79d9a71a6e69323827398ab04c26fc8979e11612.zip |
Pipe move fetch after apply to /dev/null
Diffstat (limited to '')
-rw-r--r-- | git-fetch-email.sh | 2 |
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 |