Skip to content
Snippets Groups Projects
Commit 87ac3f71 authored by Michael Weber's avatar Michael Weber
Browse files

[project @ 2000-07-26 18:11:06 by michaelw]

added newline at EOF of package files
parent 9064bb63
No related merge requests found
......@@ -9,8 +9,8 @@ main :: IO ()
main = do
args <- getArgs
case args of
[ "install" ] -> do { putStr (dumpPackages (package_details True)) }
[ "in-place" ] -> do { putStr (dumpPackages (package_details False)) }
[ "install" ] -> do { putStrLn (dumpPackages (package_details True)) }
[ "in-place" ] -> do { putStrLn (dumpPackages (package_details False)) }
_ -> do hPutStr stderr "usage: pkgconf (install | in-place)\n"
exitWith (ExitFailure 1)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment