From 4941c2726d88c188b4a212597148c6064c17f7c8 Mon Sep 17 00:00:00 2001 From: jay <> Date: Sun, 15 Feb 2026 01:40:29 -0600 Subject: [PATCH] don't require trailing new line in build.keys.conf --- do_builds.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/do_builds.sh b/do_builds.sh index b3c5850..94dbac6 100755 --- a/do_builds.sh +++ b/do_builds.sh @@ -28,7 +28,7 @@ read_from_file() { echo "$v" return 0 fi - done < "$file" + done < <(cat "$file"; echo) return 1 }