From 5367781f0c7fd1ce274492ba91895fef9d44dab3 Mon Sep 17 00:00:00 2001 From: pacien Date: Sun, 5 Jan 2020 10:43:48 +0100 Subject: add manual --- compiler/app/Main.hs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'compiler/app') diff --git a/compiler/app/Main.hs b/compiler/app/Main.hs index 24d8aad..319e984 100644 --- a/compiler/app/Main.hs +++ b/compiler/app/Main.hs @@ -41,29 +41,29 @@ data Options = Options options = Options { inputDir = "./" &= typDir - &= explicit &= name "i" &= name "input-dir" + &= explicit &= help "Gallery source directory (default=./)" , outputDir = "./out" &= typDir - &= explicit &= name "o" &= name "output-dir" + &= explicit &= help "Generated gallery output path (default=./out)" , rebuilAll = False - &= explicit &= name "r" &= name "rebuild-all" + &= explicit &= help "Invalidate cache and recompile everything" , withViewer = False - &= explicit &= name "w" &= name "with-viewer" + &= explicit &= help "Include the static web viewer in the output" } - &= summary ("ldgallery v" ++ (showVersion version) ++ " - a static gallery generator with tags") + &= summary ("ldgallery v" ++ (showVersion version) ++ " - a static web gallery generator with tags") &= program "ldgallery" &= help "Compile a gallery" &= helpArg [explicit, name "h", name "help"] -- cgit v1.2.3