bugfix
This commit is contained in:
parent
9ab9ef3ebd
commit
b702bae950
1 changed files with 2 additions and 1 deletions
|
@ -139,7 +139,8 @@ transferFile (Transfer direction u key) r = gitAnnexTransferDir r
|
||||||
|
|
||||||
{- The transfer lock file corresponding to a given transfer info file. -}
|
{- The transfer lock file corresponding to a given transfer info file. -}
|
||||||
transferLockFile :: FilePath -> FilePath
|
transferLockFile :: FilePath -> FilePath
|
||||||
transferLockFile infofile = "lck." ++ infofile
|
transferLockFile infofile = let (d,f) = splitFileName infofile in
|
||||||
|
combine d ("lck." ++ f)
|
||||||
|
|
||||||
{- Parses a transfer information filename to a Transfer. -}
|
{- Parses a transfer information filename to a Transfer. -}
|
||||||
parseTransferFile :: FilePath -> Maybe Transfer
|
parseTransferFile :: FilePath -> Maybe Transfer
|
||||||
|
|
Loading…
Reference in a new issue