diff options
author | Daniel Gröber <dxld@darkboxed.org> | 2015-06-24 11:25:43 +0200 |
---|---|---|
committer | Daniel Gröber <dxld@darkboxed.org> | 2015-06-24 11:25:43 +0200 |
commit | fefde116f3574d9e2f132efc8a0561decdda9a39 (patch) | |
tree | 4f6a3e8bf3318ced7cc09ebd6c51ccc4d2a61cac | |
parent | 73edf0fccfe8119be7b8c3d6269f9825b56598ad (diff) |
Typo
-rw-r--r-- | CabalHelper/Data.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CabalHelper/Data.hs b/CabalHelper/Data.hs index 2ab6ea5..a006d65 100644 --- a/CabalHelper/Data.hs +++ b/CabalHelper/Data.hs @@ -28,7 +28,7 @@ import System.Directory import System.IO.Temp withHelperSources :: (FilePath -> IO a) -> IO a -withHelperSources action = withSystemTempDirectory "caba-helper" $ \dir -> do +withHelperSources action = withSystemTempDirectory "cabal-helper" $ \dir -> do let chdir = dir </> "CabalHelper" createDirectory chdir forM_ sourceFiles $ \(fn, src) -> writeFile (chdir </> fn) src |