forked from bortzmeyer/GaBuZoMeu
Create the directories if they don't exist
This commit is contained in:
parent
27032718f5
commit
c70895fc5f
@ -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)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user