diff options
| author | Joey Hess <joeyh@joeyh.name> | 2016-05-22 15:52:27 -0400 |
|---|---|---|
| committer | Joey Hess <joeyh@joeyh.name> | 2016-05-22 15:52:27 -0400 |
| commit | 99b407b895d3e9815193d7d4a43bd4bd3a15ccf9 (patch) | |
| tree | b1b80e138547cb483090dbea7f26e3b4e5810963 /src/Utility/SystemDirectory.hs | |
| parent | 14e5429163f0138f03deaaa1134c8b4982c27141 (diff) | |
propellor spin
Diffstat (limited to 'src/Utility/SystemDirectory.hs')
| -rw-r--r-- | src/Utility/SystemDirectory.hs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/Utility/SystemDirectory.hs b/src/Utility/SystemDirectory.hs new file mode 100644 index 00000000..3dd44d19 --- /dev/null +++ b/src/Utility/SystemDirectory.hs @@ -0,0 +1,16 @@ +{- System.Directory without its conflicting isSymbolicLink + - + - Copyright 2016 Joey Hess <id@joeyh.name> + - + - License: BSD-2-clause + -} + +-- Disable warnings because only some versions of System.Directory export +-- isSymbolicLink. +{-# OPTIONS_GHC -fno-warn-tabs -w #-} + +module Utility.SystemDirectory ( + module System.Directory +) where + +import System.Directory hiding (isSymbolicLink) |
