From 8cf4d3457f444e6f9716508aa75fdee89ac76454 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A1n=20Enr=C3=ADquez?= Date: Fri, 13 Jan 2023 12:46:37 +0100 Subject: [PATCH] [temporary] Rebase fix --- src/Xrefcheck/System.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Xrefcheck/System.hs b/src/Xrefcheck/System.hs index 24d7be5f..1a58148b 100644 --- a/src/Xrefcheck/System.hs +++ b/src/Xrefcheck/System.hs @@ -103,7 +103,7 @@ pathIsSymbolicLink (UnsafeCanonicalPath p) = Directory.pathIsSymbolicLink p -- | 'System.Directory.getSymbolicLinkTarget' version for 'CanonicalPath'. getSymbolicLinkTarget :: CanonicalPath -> IO FilePath -getSymbolicLinkTarget (UnsafeCanonicalPath p) = D.getSymbolicLinkTarget p +getSymbolicLinkTarget (UnsafeCanonicalPath p) = Directory.getSymbolicLinkTarget p -- | Get the list of directories, canonicalized, between two given paths. getDirsBetweenRootAndFile :: CanonicalPath -> CanonicalPath -> [CanonicalPath]