diff options
author | pacien | 2020-01-05 19:24:50 +0100 |
---|---|---|
committer | pacien | 2020-01-05 19:24:50 +0100 |
commit | 2ad60869c2e8d0846672ccb18b2de99c9cf33671 (patch) | |
tree | 20c855a0d6eba12f81d8242caea237eb297f645f /compiler/src/Compiler.hs | |
parent | ab2f076c5bf546f8aca9910b2b61a1b5a67361bc (diff) | |
download | ldgallery-2ad60869c2e8d0846672ccb18b2de99c9cf33671.tar.gz |
compiler: add option to add tags from n parent directories
GitHub: closes #15
Diffstat (limited to 'compiler/src/Compiler.hs')
-rw-r--r-- | compiler/src/Compiler.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/src/Compiler.hs b/compiler/src/Compiler.hs index d0ec003..fc4e272 100644 --- a/compiler/src/Compiler.hs +++ b/compiler/src/Compiler.hs | |||
@@ -111,7 +111,7 @@ compileGallery inputDirPath outputDirPath rebuildAll = | |||
111 | 111 | ||
112 | let itemProc = itemProcessor (pictureMaxResolution config) cache | 112 | let itemProc = itemProcessor (pictureMaxResolution config) cache |
113 | let thumbnailProc = thumbnailProcessor (thumbnailMaxResolution config) cache | 113 | let thumbnailProc = thumbnailProcessor (thumbnailMaxResolution config) cache |
114 | let galleryBuilder = buildGalleryTree itemProc thumbnailProc (implicitDirectoryTag config) | 114 | let galleryBuilder = buildGalleryTree itemProc thumbnailProc (tagsFromDirectories config) |
115 | resources <- galleryBuilder (galleryName config) inputTree | 115 | resources <- galleryBuilder (galleryName config) inputTree |
116 | 116 | ||
117 | galleryCleanupResourceDir resources outputDirPath | 117 | galleryCleanupResourceDir resources outputDirPath |