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.Grammar (registry)
|
||||||
import Registry.Registry
|
import Registry.Registry
|
||||||
|
|
||||||
|
import System.Directory (createDirectoryIfMissing)
|
||||||
|
|
||||||
infile = "./language-subtag-registry"
|
infile = "./language-subtag-registry"
|
||||||
outdir = "./registry-html"
|
outdir = "./registry-html"
|
||||||
|
|
||||||
@ -31,6 +33,8 @@ main = do
|
|||||||
input <- IO.hGetContents f
|
input <- IO.hGetContents f
|
||||||
let theregistry = getRegistry input
|
let theregistry = getRegistry input
|
||||||
foreach ["language", "script", "region", "variant",
|
foreach ["language", "script", "region", "variant",
|
||||||
"redundant", "grandfathered"]
|
"redundant", "grandfathered"]
|
||||||
(toHTMLFiles theregistry)
|
(\arg ->
|
||||||
|
createDirectoryIfMissing True (outdir ++ "/" ++ arg) >>
|
||||||
|
toHTMLFiles theregistry arg)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user