definition:
|
installFromZip :: Config -> String -> ErrorLogger ()
installFromZip cfg zip = do
t <- liftIOEL tempDir
liftIOEL $ recreateDirectory (t </> "installtmp")
absZip <- liftIOEL $ getRealPath zip
c <- inTempDirEL $ showExecCmd $ "unzip -qq -d installtmp " ++ quote absZip
if c == 0
then do
pkgSpec <- loadPackageSpec (t </> "installtmp")
logDebug ("ZIP contains " ++ packageId pkgSpec)
liftIOEL cleanTempDir
installFromSource cfg pkgSpec (FileSource zip)
else do
liftIOEL cleanTempDir
fail "failed to extract ZIP file"
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Installs a package from a ZIP file to the global package cache.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
installFromZip
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
CPM.Config.Config -> 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
|