From 87c1c103eacf153aeaa79be9fd896df147a76c10 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Fri, 16 Dec 2011 16:56:31 -0400 Subject: [PATCH] add back message --- Command/Reinject.hs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Command/Reinject.hs b/Command/Reinject.hs index 906f7c5176..0648e90fca 100644 --- a/Command/Reinject.hs +++ b/Command/Reinject.hs @@ -26,7 +26,11 @@ start (src:dest:[]) | otherwise = do ifAnnexed src (error $ "cannot used annexed file as src: " ++ src) - (next $ whenAnnexed (perform src) dest) + go + where + go = do + showStart "reinject" dest + next $ whenAnnexed (perform src) dest start _ = error "specify a src file and a dest file" perform :: FilePath -> FilePath -> (Key, Backend Annex) -> CommandPerform