Windows: Fix bug introduced in last release that caused files in the git-annex branch to have lines teminated with \r.
This commit is contained in:
parent
d69c78483c
commit
1ab3d7c810
2 changed files with 8 additions and 1 deletions
|
@ -40,7 +40,12 @@ setJournalFile _jl file content = do
|
||||||
jfile <- fromRepo $ journalFile file
|
jfile <- fromRepo $ journalFile file
|
||||||
let tmpfile = tmp </> takeFileName jfile
|
let tmpfile = tmp </> takeFileName jfile
|
||||||
liftIO $ do
|
liftIO $ do
|
||||||
writeFileAnyEncoding tmpfile content
|
withFile tmpfile WriteMode $ \h -> do
|
||||||
|
fileEncoding h
|
||||||
|
#ifdef mingw32_HOST_OS
|
||||||
|
hSetNewlineMode h noNewlineTranslation
|
||||||
|
#endif
|
||||||
|
hPutStr h content
|
||||||
moveFile tmpfile jfile
|
moveFile tmpfile jfile
|
||||||
|
|
||||||
{- Gets any journalled content for a file in the branch. -}
|
{- Gets any journalled content for a file in the branch. -}
|
||||||
|
|
2
debian/changelog
vendored
2
debian/changelog
vendored
|
@ -9,6 +9,8 @@ git-annex (5.20140530) UNRELEASED; urgency=medium
|
||||||
* assistant: Make sanity checker tmp dir cleanup code more robust.
|
* assistant: Make sanity checker tmp dir cleanup code more robust.
|
||||||
* unused: Avoid checking view branches for unused files.
|
* unused: Avoid checking view branches for unused files.
|
||||||
* webapp: Include ssh port in mangled hostname.
|
* webapp: Include ssh port in mangled hostname.
|
||||||
|
* Windows: Fix bug introduced in last release that caused files
|
||||||
|
in the git-annex branch to have lines teminated with \r.
|
||||||
|
|
||||||
-- Joey Hess <joeyh@debian.org> Thu, 29 May 2014 20:10:59 -0400
|
-- Joey Hess <joeyh@debian.org> Thu, 29 May 2014 20:10:59 -0400
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue