diff options
author | Joey Hess <joey@kitenet.net> | 2010-12-02 17:51:02 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-12-02 17:51:02 -0400 |
commit | 2fba1ba40d9c3f07f36e68515ceb1031e7983421 (patch) | |
tree | 8f88c12a809064f6f7bf09904b58956b0a24ca2b /git-annex.hs | |
parent | b9320ee1d53bfe72b0fbf7e08c927f5b45bbc5c9 (diff) |
Avoid deleting temp files when rsync fails.
Diffstat (limited to 'git-annex.hs')
-rw-r--r-- | git-annex.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-annex.hs b/git-annex.hs index d111156f0..417d335e1 100644 --- a/git-annex.hs +++ b/git-annex.hs @@ -20,4 +20,4 @@ main = do gitrepo <- Git.repoFromCwd state <- Annex.new gitrepo allBackends (configure, actions) <- parseCmd args state - tryRun state $ [startup, upgrade] ++ configure ++ actions ++ [shutdown] + tryRun state $ [startup, upgrade] ++ configure ++ actions |