From 6b24f2d7a231ab2da8e74c7751fac38b5f696653 Mon Sep 17 00:00:00 2001 From: Nick Chambers Date: Sat, 19 Jun 2021 14:46:52 -0500 Subject: [PATCH] Fix the syntax for closing the log fd --- rowbot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rowbot b/rowbot index af7c6b5..d2e1b98 100755 --- a/rowbot +++ b/rowbot @@ -135,7 +135,7 @@ cleanup() { exec {in_sock}>&- {out_sock}>&- if (( log != 1 )); then - {log}>&- + exec {log}>&- fi fi }