diff options
Diffstat (limited to 'src/CabalHelper/Compiletime/Types')
-rw-r--r-- | src/CabalHelper/Compiletime/Types/RelativePath.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/CabalHelper/Compiletime/Types/RelativePath.hs b/src/CabalHelper/Compiletime/Types/RelativePath.hs index bfc29bf..107a8ce 100644 --- a/src/CabalHelper/Compiletime/Types/RelativePath.hs +++ b/src/CabalHelper/Compiletime/Types/RelativePath.hs @@ -30,6 +30,7 @@ import System.FilePath -- | A path guaranteed to be relative. The constructor is not exposed, use the -- 'mkRelativePath' smart constructor. newtype RelativePath = RelativePath { unRelativePath :: FilePath } + deriving (Show) -- | Smart constructor for 'RelativePath'. Checks if the given path is absolute -- and throws 'UserError' if not. |