Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Missing space after "stray directory" #1223

Merged
merged 1 commit into from
Jan 25, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading