definition:
|
getCpmTool :: String -> IO (Maybe String)
getCpmTool toolbin = do
excmd <- system $ "which " ++ toolbin ++ " > /dev/null"
if excmd == 0
then return $ Just toolbin
else do homedir <- getHomeDirectory
let cpmtoolfile = homedir </> ".cpm" </> "bin" </> toolbin
excpm <- doesFileExist cpmtoolfile
if excpm
then return $ Just cpmtoolfile
else return Nothing
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Check whether some tool installable by CPM is available, i.e.,
-- either in the current path or in the CPM bin directory,
-- and return its name or path.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_) |-> _}
|
name:
|
getCpmTool
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
String -> Prelude.IO (Prelude.Maybe String)
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|