When testing if the $dotest directory exists, and if $next is greater than $last, the script currently executes `cat` on files that might not exist. So, suppress the error output from `cat`. Signed-off-by: Ramkumar Ramachandra <artagnon@xxxxxxxxx> --- git-am.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/git-am.sh b/git-am.sh index c092855..88aa438 100755 --- a/git-am.sh +++ b/git-am.sh @@ -446,8 +446,8 @@ done # If the dotest directory exists, but we have finished applying all the # patches in them, clear it out. if test -d "$dotest" && - last=$(cat "$dotest/last") && - next=$(cat "$dotest/next") && + last=$(cat "$dotest/last" 2>/dev/null) && + next=$(cat "$dotest/next" 2>/dev/null) && test $# != 0 && test "$next" -gt "$last" then -- 1.8.2.1.578.ga933817 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html