diff options
| author | Paul Buetow <paul@buetow.org> | 2026-04-22 08:23:12 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-04-22 08:23:12 +0300 |
| commit | af21fec32c7cf3c15879dba6646a0b5cf19ac583 (patch) | |
| tree | 0073ce15ee7331d11a9794e5a9208b5e23736a2e /internal/comic/runner.go | |
| parent | d5f5e52db275aa41a0cbaae760eb23ce8e24b160 (diff) | |
Fix gallery PNG copy destination
Diffstat (limited to 'internal/comic/runner.go')
| -rw-r--r-- | internal/comic/runner.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/comic/runner.go b/internal/comic/runner.go index b1381fb..8be8e2c 100644 --- a/internal/comic/runner.go +++ b/internal/comic/runner.go @@ -281,7 +281,7 @@ func (r *Runner) saveTTSPlaceholder(titleSlug, dir string) error { } func copyGalleryPNGsToComicsGallery(outputRoot, comicDir string) error { - destDir := filepath.Join(outputRoot, "comics", "gallery") + destDir := filepath.Join(outputRoot, "gallery") if err := os.MkdirAll(destDir, 0o755); err != nil { return fmt.Errorf("mkdir gallery: %w", err) } |
