diff --git a/app/ghcup/GHCup/OptParse/List.hs b/app/ghcup/GHCup/OptParse/List.hs index 7212578..0b1c5ff 100644 --- a/app/ghcup/GHCup/OptParse/List.hs +++ b/app/ghcup/GHCup/OptParse/List.hs @@ -147,7 +147,7 @@ printListResult no_color raw lr = do lengths = fmap (maximum . fmap strWidth) cols padded = fmap (\xs -> zipWith padTo xs lengths) rows - forM_ padded $ \row -> putStrLn $ unwords row + forM_ (if raw then rows else padded) $ \row -> putStrLn $ unwords row where padTo str' x =