Merge pull request #135 from subfloor201/chore/update-do_builds.sh

Don't require trailing new line in build.keys.conf
This commit is contained in:
stopflock
2026-03-03 16:04:03 -06:00
committed by GitHub

View File

@@ -28,7 +28,7 @@ read_from_file() {
echo "$v"
return 0
fi
done < "$file"
done < <(cat "$file"; echo)
return 1
}