Module Job.Op
Open type and add combinators. Meant to be opened
val (@@>) : command -> (result -> 'a job) -> 'a job
Stage a shell command with its continuation, eg:
command "ls" ["-a"] @@> fun result -> if OpamProcess.is_success result then Done result.r_stdout else failwith "ls"