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 d2e22e9 commit bdf2331Copy full SHA for bdf2331
src/Spago/Paths.purs
@@ -47,7 +47,7 @@ toGitSearchPath rootDir = reverse $ makeSearchPaths rootDir 4 where
47
makeSearchPath wd i = joinWith "" $ cons wd $ cons "/" $ replicate i "../"
48
49
makeSearchPaths :: FilePath -> Int -> Array FilePath
50
- makeSearchPaths wd 0 = mempty
+ makeSearchPaths _ 0 = mempty
51
makeSearchPaths wd i | i > 0 = cons (makeSearchPath wd i) (makeSearchPaths wd (i - 1))
52
makeSearchPaths _ _ = mempty
53
0 commit comments