diff options
Diffstat (limited to 'f3s/beets-art/helm-chart/templates/cronjob.yaml')
| -rw-r--r-- | f3s/beets-art/helm-chart/templates/cronjob.yaml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/f3s/beets-art/helm-chart/templates/cronjob.yaml b/f3s/beets-art/helm-chart/templates/cronjob.yaml index fb37a7e..55125ff 100644 --- a/f3s/beets-art/helm-chart/templates/cronjob.yaml +++ b/f3s/beets-art/helm-chart/templates/cronjob.yaml @@ -83,8 +83,12 @@ spec: $BEET fetchart || echo "fetchart returned non-zero (continuing)" # 3. Embed art into audio files where missing. + # `beet embedart` (no -f) prompts "Modify artwork for N + # albums (Y/n)?" with no flag to bypass; pipe `yes` so + # it proceeds non-interactively. embedart still respects + # ifempty: no and compare_threshold: 50 from config. echo "--- embedart (backfill) ---" - $BEET embedart || echo "embedart returned non-zero (continuing)" + yes | $BEET embedart || echo "embedart returned non-zero (continuing)" echo "=== $(date -u) beets-art sweep finished ===" volumeMounts: |
