We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5857155 commit 79210d1Copy full SHA for 79210d1
src/Spago/Paths.purs
@@ -53,7 +53,7 @@ toGitSearchPath rootDir = reverse $ makeSearchPaths rootDir 4 where
53
makeSearchPath wd i = joinWith "" $ cons wd $ cons "/" $ replicate i "../"
54
55
makeSearchPaths :: FilePath -> Int -> Array FilePath
56
- makeSearchPaths wd 0 = mempty
+ makeSearchPaths _ 0 = mempty
57
makeSearchPaths wd i | i > 0 = cons (makeSearchPath wd i) (makeSearchPaths wd (i - 1))
58
makeSearchPaths _ _ = mempty
59
0 commit comments