diff options
author | Alberto Berti <alberto@metapensiero.it> | 2014-03-26 00:31:02 +0100 |
---|---|---|
committer | Alberto Berti <alberto@metapensiero.it> | 2014-03-26 00:31:02 +0100 |
commit | 7aff5d6e53ee529e2977c1f5d4af524c3c92df48 (patch) | |
tree | 6e194f85cef0ca3f6c5ba44a716422b4d811ba2d /Remote/Tahoe.hs | |
parent | d67a523a5096933e6d8a8e0834b43ccf7730cd86 (diff) |
Fix thaoe remote to work with latest tahoe (v. 1.10.0)
Diffstat (limited to 'Remote/Tahoe.hs')
-rw-r--r-- | Remote/Tahoe.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Remote/Tahoe.hs b/Remote/Tahoe.hs index 56a17eb62..d265d7ac1 100644 --- a/Remote/Tahoe.hs +++ b/Remote/Tahoe.hs @@ -216,7 +216,7 @@ readTahoe hdl command params = withTahoeConfigDir hdl $ \configdir -> tahoeParams :: TahoeConfigDir -> String -> [CommandParam] -> [CommandParam] tahoeParams configdir command params = - Param command : Param "-d" : File configdir : params + Param "-d" : File configdir : Param command : params storeCapability :: UUID -> Key -> Capability -> Annex () storeCapability u k cap = setRemoteState u k cap |