raco-invoke:   invoke raco commands
raco
8.12

raco-invoke: invoke raco commands🔗ℹ

bogdan@defn.io <Bogdan Popa>

This module provides a function for invoking raco commands in a way that cooperates with raco-cross.

procedure

(raco command-name arg ...)  byte?

  command-name : string?
  arg : string?
Invokes the command named command-name with the given set of args. If the command doesn’t exist, an error is raised. It invokes the command inside the current process via dynamic-require, so it doesn’t create a subprocess.

(raco "exe" "--help")
(raco "exe" "-o" "test" "test.rkt")