Skip to content

Commit

Permalink
Missing space in "stray directory"
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasabel committed Jan 20, 2025
1 parent c4605a1 commit 3a5a6c5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/GHCup/List.hs
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ listVersions lt' criteria hideOld showNightly days = do
}
Left e -> do
logWarn
$ "Could not parse version of stray directory" <> T.pack e
$ "Could not parse version of stray directory " <> T.pack e
pure Nothing

strayCabals :: ( MonadReader env m
Expand Down Expand Up @@ -218,7 +218,7 @@ listVersions lt' criteria hideOld showNightly days = do
}
Left e -> do
logWarn
$ "Could not parse version of stray directory" <> T.pack e
$ "Could not parse version of stray directory " <> T.pack e
pure Nothing

strayHLS :: ( MonadReader env m
Expand Down Expand Up @@ -252,7 +252,7 @@ listVersions lt' criteria hideOld showNightly days = do
}
Left e -> do
logWarn
$ "Could not parse version of stray directory" <> T.pack e
$ "Could not parse version of stray directory " <> T.pack e
pure Nothing

strayStacks :: ( MonadReader env m
Expand Down Expand Up @@ -287,7 +287,7 @@ listVersions lt' criteria hideOld showNightly days = do
}
Left e -> do
logWarn
$ "Could not parse version of stray directory" <> T.pack e
$ "Could not parse version of stray directory " <> T.pack e
pure Nothing

currentGHCup :: Map.Map GHCTargetVersion VersionInfo -> Maybe ListResult
Expand Down

0 comments on commit 3a5a6c5

Please sign in to comment.