Fix heredoc EOF marker in plex-metrics script

The EOF marker was on the same line as the library_metrics variable,
causing the heredoc to not close properly.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Erich Blume 2026-01-15 15:22:26 -08:00
commit 9d2d744f34

View file

@ -159,7 +159,8 @@ plex_transcode_audio_sessions ${plex_transcode_audio}
# HELP plex_library_items Number of items in each Plex library
# TYPE plex_library_items gauge
${library_metrics}EOF
${library_metrics}
EOF
# Atomic move
mv "$TEMP_FILE" "$OUTPUT_FILE"