summaryrefslogtreecommitdiff
path: root/Upgrade
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2017-02-28 12:49:17 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2017-02-28 12:49:17 -0400
commita96b8b74311a52cc04e3d5e0d1d67628aa996693 (patch)
tree5a75db18529e00c5c46b9229fa83dedbc1a1238d /Upgrade
parent0658d8974218cd67112bc13f77292b0e111b7d06 (diff)
squelch a couple of warnings about moveAnnex return code
Diffstat (limited to 'Upgrade')
-rw-r--r--Upgrade/V1.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Upgrade/V1.hs b/Upgrade/V1.hs
index d0f9e51d3..01741bbeb 100644
--- a/Upgrade/V1.hs
+++ b/Upgrade/V1.hs
@@ -74,7 +74,7 @@ moveContent = do
let d = parentDir f
liftIO $ allowWrite d
liftIO $ allowWrite f
- moveAnnex k f
+ _ <- moveAnnex k f
liftIO $ removeDirectory d
updateSymlinks :: Annex ()