definition:
|
tryInstallRepositoryDB :: Config -> Bool -> Bool -> ErrorLogger ()
tryInstallRepositoryDB cfg usecache writecsv = do
withsqlite <- liftIOEL $ fileInPath "sqlite3"
if withsqlite
then installRepositoryDB cfg usecache writecsv
else logInfo
"Command 'sqlite3' not found: install package 'sqlite3' to speed up CPM"
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Installs the repository database with the current repository index
--- if the command `sqlite3` is in the path.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> _}
|
name:
|
tryInstallRepositoryDB
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
CPM.Config.Config -> Prelude.Bool -> Prelude.Bool
-> CPM.ErrorLogger.ErrorLogger ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|