definition:
|
uninstallPackage :: Config -> String -> Version -> ErrorLogger ()
uninstallPackage cfg pkgname ver = do
let pkgId = pkgname ++ "-" ++ showVersion ver
pkgDir = packageInstallDir cfg </> pkgId
exists <- liftIOEL $ doesDirectoryExist pkgDir
if exists
then do showExecCmd ("rm -Rf " ++ quote pkgDir)
logInfo $ "Package '" ++ pkgId ++ "' uninstalled."
else logInfo $ "Package '" ++ pkgId ++ "' is not installed."
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Removes a package from the global package cache.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> _}
|
name:
|
uninstallPackage
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
CPM.Config.Config -> String
-> (Prelude.Int, Prelude.Int, Prelude.Int, Prelude.Maybe 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
|