Skip to content

Commit 79210d1

Browse files
committed
fix warning
1 parent 5857155 commit 79210d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Spago/Paths.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ toGitSearchPath rootDir = reverse $ makeSearchPaths rootDir 4 where
5353
makeSearchPath wd i = joinWith "" $ cons wd $ cons "/" $ replicate i "../"
5454

5555
makeSearchPaths :: FilePath -> Int -> Array FilePath
56-
makeSearchPaths wd 0 = mempty
56+
makeSearchPaths _ 0 = mempty
5757
makeSearchPaths wd i | i > 0 = cons (makeSearchPath wd i) (makeSearchPaths wd (i - 1))
5858
makeSearchPaths _ _ = mempty
5959

0 commit comments

Comments
 (0)