aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CabalHelper/Data.hs2
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