diff options
author | Joey Hess <joey@kitenet.net> | 2014-02-06 20:33:30 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2014-02-06 20:57:58 -0400 |
commit | 52971b3d94d77ac11f78ec57c1552507e6ccab9d (patch) | |
tree | 85e98a885cb48526fa93f700ca5cfe14e50cb24c /Utility/Path.hs | |
parent | 7d21b09d98d91910da93a73ca5efb3cff4e386b2 (diff) |
add regression test for symlink calculation
Note: Test reordered because running git-annex sync early broke the
environment for some other tests.
Diffstat (limited to 'Utility/Path.hs')
-rw-r--r-- | Utility/Path.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Utility/Path.hs b/Utility/Path.hs index 817cee480..27f39d3e5 100644 --- a/Utility/Path.hs +++ b/Utility/Path.hs @@ -47,6 +47,7 @@ absNormPath dir path = Just $ combine dir path {- On Windows, this converts the paths to unix-style, in order to run - MissingH's absNormPath on them. Resulting path will use / separators. -} +absNormPathUnix :: FilePath -> FilePath -> Maybe FilePath #ifndef mingw32_HOST_OS absNormPathUnix dir path = MissingH.absNormPath dir path #else |