summaryrefslogtreecommitdiff
path: root/Utility/Path.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2015-08-04 14:58:21 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2015-08-04 14:58:21 -0400
commit058e0e562ca14bcc4953ca449c26ef5ae6122b40 (patch)
tree4625ebe45f9e9a2f46345f21319cb52d9c8caa8f /Utility/Path.hs
parent75e322339a4f302d22d7e736b199ab9f24cbdf17 (diff)
proxy: Fix behavior when run in subdirectory of git repo.
This fixes a reversion introduced by relative path changes back last winter. The root cause is simplifyPath "../foo" was incorrectly yielding "foo". absPathFrom seems quite horrible. Probably most things that use it should use </> instead.
Diffstat (limited to 'Utility/Path.hs')
-rw-r--r--Utility/Path.hs7
1 files changed, 4 insertions, 3 deletions
diff --git a/Utility/Path.hs b/Utility/Path.hs
index 8e3c2bddb..4c2dd5c8b 100644
--- a/Utility/Path.hs
+++ b/Utility/Path.hs
@@ -30,8 +30,8 @@ import qualified "MissingH" System.Path as MissingH
import Utility.Monad
import Utility.UserInfo
-{- Simplifies a path, removing any ".." or ".", and removing the trailing
- - path separator.
+{- Simplifies a path, removing any "." component, collapsing "dir/..",
+ - and removing the trailing path separator.
-
- On Windows, preserves whichever style of path separator might be used in
- the input FilePaths. This is done because some programs in Windows
@@ -50,7 +50,8 @@ simplifyPath path = dropTrailingPathSeparator $
norm c [] = reverse c
norm c (p:ps)
- | p' == ".." = norm (drop 1 c) ps
+ | p' == ".." && not (null c) && dropTrailingPathSeparator (c !! 0) /= ".." =
+ norm (drop 1 c) ps
| p' == "." = norm c ps
| otherwise = norm (p:c) ps
where