diff options
Diffstat (limited to 'Remote')
-rw-r--r-- | Remote/Rsync.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Remote/Rsync.hs b/Remote/Rsync.hs index df4e0a44f..3c449b5de 100644 --- a/Remote/Rsync.hs +++ b/Remote/Rsync.hs @@ -100,7 +100,7 @@ rsyncUrls o k = map use annexHashes f = keyFile k store :: RsyncOpts -> Key -> Annex Bool -store o k = rsyncSend o k =<< inRepo (gitAnnexLocation k) +store o k = rsyncSend o k <=< inRepo $ gitAnnexLocation k storeEncrypted :: RsyncOpts -> (Cipher, Key) -> Key -> Annex Bool storeEncrypted o (cipher, enck) k = withTmp enck $ \tmp -> do |