Apparently my git (v2.40.0) does more warnings and we're not silencing all the possible ones in the commit_rerere_cache function
Signed-off-by: Daniel Vetter <[email protected]> --- dim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dim b/dim index b87b54259f8b..c630d7295568 100755 --- a/dim +++ b/dim @@ -667,7 +667,7 @@ function commit_rerere_cache git rm $file &> /dev/null || true fi done - find rr-cache/ -mtime -1 -type f -not -name "thisimage*" -print0 | xargs -0 git add > /dev/null || true + find rr-cache/ -mtime -1 -type f -not -name "thisimage*" -print0 | xargs -0 git add &> /dev/null || true git rm rr-cache/rr-cache &> /dev/null || true commit_message=$(mktemp) -- 2.40.0
