summaryrefslogtreecommitdiff
path: root/src/Propellor/Base.hs
diff options
context:
space:
mode:
authorJoey Hess2016-05-22 15:52:27 -0400
committerJoey Hess2016-05-22 15:53:58 -0400
commit0d9148d03cd40ddf9ae79fadd6571dd0fd576d5b (patch)
tree8939263d3925289d1223a40e6348ceca6846bb32 /src/Propellor/Base.hs
parent14e5429163f0138f03deaaa1134c8b4982c27141 (diff)
split out module to work around badly named symbol in directory-1.2.6.2
Sadly my bug report about this is not going to get fixed it seems, so I have to drag around a whole added module file just to deal with it. https://github.com/haskell/directory/issues/52
Diffstat (limited to 'src/Propellor/Base.hs')
-rw-r--r--src/Propellor/Base.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Propellor/Base.hs b/src/Propellor/Base.hs
index ef75bf03..ae75589f 100644
--- a/src/Propellor/Base.hs
+++ b/src/Propellor/Base.hs
@@ -20,7 +20,7 @@ module Propellor.Base (
, module Propellor.Utilities
-- * System modules
- , module System.Directory
+ , module Utility.SystemDirectory
, module System.IO
, module System.FilePath
, module Data.Maybe
@@ -47,7 +47,7 @@ import Propellor.PropAccum
import Propellor.Location
import Propellor.Utilities
-import System.Directory hiding (isSymbolicLink)
+import Utility.SystemDirectory
import System.IO
import System.FilePath
import Data.Maybe