definition:
|
checkoutPackage :: Config -> Package -> String -> ErrorLogger ()
checkoutPackage cfg pkg outdir = do
sexists <- liftIOEL $ doesDirectoryExist pkgDir
let codir = if null outdir then name pkg else outdir
texists <- liftIOEL $ doesDirectoryExist codir
if texists
then logError $
"Local package directory '" ++ codir ++ "' already exists."
else if sexists
then do liftIOEL $ copyDirectory pkgDir codir
logInfo (logmsg codir)
else logError $ "Package '" ++ pkgId ++ "' is not installed."
where
pkgId = packageId pkg
pkgDir = installedPackageDir cfg pkg
logmsg d = "Package '" ++ pkgId ++ "' checked out into directory '" ++
d ++ "'."
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Checkout a package from the global package cache.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> _}
|
name:
|
checkoutPackage
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
CPM.Config.Config -> CPM.Package.Package -> String
-> CPM.ErrorLogger.ErrorLogger ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|