aboutsummaryrefslogtreecommitdiff
path: root/data/make-reference-files.hs
diff options
context:
space:
mode:
Diffstat (limited to 'data/make-reference-files.hs')
-rw-r--r--data/make-reference-files.hs27
1 files changed, 0 insertions, 27 deletions
diff --git a/data/make-reference-files.hs b/data/make-reference-files.hs
deleted file mode 100644
index 77e518496..000000000
--- a/data/make-reference-files.hs
+++ /dev/null
@@ -1,27 +0,0 @@
-import System.Environment
-import System.Directory
-import Codec.Archive.Zip
-import qualified Data.ByteString.Lazy as BS
-import qualified Control.Exception as E
-import System.IO.Error (isDoesNotExistError)
-import System.FilePath
-
-mkzip :: String -> IO ()
-mkzip fmt = do
- let dir = "data" </> fmt
- output = "data" </> "reference" <.> fmt
- cd <- getCurrentDirectory
- setCurrentDirectory dir
- archive <- addFilesToArchive [OptRecursive] emptyArchive ["."]
- setCurrentDirectory cd
- removeIfExists output
- BS.writeFile output $ fromArchive archive
-
-removeIfExists :: FilePath -> IO ()
-removeIfExists fileName = removeFile fileName `E.catch` handleExists
- where handleExists e
- | isDoesNotExistError e = return ()
- | otherwise = E.throwIO e
-
-main :: IO ()
-main = getArgs >>= mkzip . (!!0)