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 29a8c9f commit a89b6a7Copy full SHA for a89b6a7
src/Stack/List.hs
@@ -8,6 +8,7 @@ module Stack.List
8
) where
9
10
import Pantry ( loadSnapshot )
11
+import qualified RIO.ByteString.Lazy as Lazy
12
import qualified RIO.Map as Map
13
import RIO.Process ( HasProcessContext )
14
import Stack.Config ( makeConcreteResolver )
@@ -56,7 +57,7 @@ listPackages mSnapshot input = do
56
57
case errs1 ++ errs2 of
58
[] -> pure ()
59
errs -> prettyThrowM $ CouldNotParsePackageSelectors errs
- mapM_ (prettyInfo . fromString . packageIdentifierString) locs
60
+ mapM_ (Lazy.putStrLn . fromString . packageIdentifierString) locs
61
where
62
toLoc | Just snapshot <- mSnapshot = toLocSnapshot snapshot
63
| otherwise = toLocNoSnapshot
0 commit comments