skip the quotation marks when reporting temp file location

This commit is contained in:
Daniel Wagner 2015-11-30 16:35:40 -08:00
parent 4796b0a75a
commit fa780dbd1a

View File

@ -31,5 +31,5 @@ writePreludeContents = io $ do
(path, h) <- openTempFile tmpdir "Cryptol.cry" (path, h) <- openTempFile tmpdir "Cryptol.cry"
hPutStr h preludeContents hPutStr h preludeContents
hClose h hClose h
print $ "Wrote Prelude to " ++ path putStrLn $ "Wrote Prelude to " ++ path
return path return path