Skip to content

Commit

Permalink
Normalize file endings with EOL before EOF
Browse files Browse the repository at this point in the history
  • Loading branch information
philderbeast committed Jun 4, 2024
1 parent 7d2cf18 commit 70e940d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test-suite-golden/src/Golden.hs
Original file line number Diff line number Diff line change
Expand Up @@ -150,11 +150,13 @@ writeJson :: FilePath -> FilePath -> IO ()
writeJson dhallFile jsonFile = do
s <- showJson Nothing dhallFile
writeFile jsonFile s
appendFile jsonFile $ unlines [""]

writeYaml :: FilePath -> FilePath -> IO ()
writeYaml dhallFile yamlFile = do
s <- showYaml Nothing dhallFile
writeFile yamlFile s
appendFile yamlFile $ unlines [""]

cabalFilePath :: FilePath -> FilePath
cabalFilePath p
Expand Down

0 comments on commit 70e940d

Please sign in to comment.