blob: 4d0b0127521514896dfb310fe2f6403ccc90c071 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
#!/usr/bin/env runhaskell
\begin{code}
{-# LANGUAGE CPP #-}
import System.Environment
import System.FilePath
import System.Directory
import Data.List
import Control.Applicative
import Control.Monad
baseDir :: FilePath
baseDir = takeDirectory __FILE__
main :: IO ()
main = do
contents <- filter (not . ignore) <$> getDirectoryContents (baseDir </> "out")
args <- getArgs
mapM_ copyDir $ if not (null args)
then filter ((`elem` args) . takeBaseName) contents
else contents
where
ignore =
foldr (liftA2 (||)) (const False) [
(== ".")
, (== "..")
, isPrefixOf "index"
, isPrefixOf "doc-index"
]
-- | Copy a directory to ref, one level deep.
copyDir :: FilePath -> IO ()
copyDir dir = do
let old = baseDir </> "out" </> dir
new = baseDir </> "ref" </> dir
alreadyExists <- doesDirectoryExist new
unless alreadyExists $ do
putStrLn (old ++ " -> " ++ new)
createDirectoryIfMissing True new
files <- getDirectoryContents old >>= filterM (liftM not . doesDirectoryExist)
let files' = filter (\x -> x /= "." && x /= "..") files
mapM_ (\f -> copyFile' (old </> f) (new </> f)) files'
where
copyFile' o n = do
putStrLn $ o ++ " -> " ++ n
copyFile o n
\end{code}
|