Create the directories if they don't exist

This commit is contained in:
Stephane Bortzmeyer 2023-06-12 21:35:43 +02:00
parent 27032718f5
commit c70895fc5f

View File

@ -4,6 +4,8 @@ import Registry.Utils
import Registry.Grammar (registry)
import Registry.Registry
import System.Directory (createDirectoryIfMissing)
infile = "./language-subtag-registry"
outdir = "./registry-html"
@ -31,6 +33,8 @@ main = do
input <- IO.hGetContents f
let theregistry = getRegistry input
foreach ["language", "script", "region", "variant",
"redundant", "grandfathered"]
(toHTMLFiles theregistry)
"redundant", "grandfathered"]
(\arg ->
createDirectoryIfMissing True (outdir ++ "/" ++ arg) >>
toHTMLFiles theregistry arg)