aboutsummaryrefslogtreecommitdiff
path: root/Upgrade/V4.hs
blob: 147ace5598a4114a52dc85536b5d6d094bb39b0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{- git-annex v4 -> v5 uppgrade support
 -
 - Copyright 2013 Joey Hess <joey@kitenet.net>
 -
 - Licensed under the GNU GPL version 3 or higher.
 -}

module Upgrade.V4 where

import Common.Annex
import Config
import Annex.Direct

{- Direct mode only upgrade. -}
upgrade :: Bool -> Annex Bool
upgrade automatic = ifM isDirect
	( do
		unless automatic $
			showAction "v4 to v5"
		setDirect True
		return True
	, return False
	)