View Source VintageNet.Interface.CommandRunner (vintage_net v0.13.5)

The CommandRunner module runs commands specified in RawConfigs

See the RawConfig documentation for where lists of commands are specified. The following commands are supported:

  • {:run, command, args} - Run a system command
  • {:run_ignore_exit, command, args} - Same as :run, but without the exit status check
  • {:fun, module, function_name, args} - Run a function by MFArgs
  • {:fun, fun} - Run a function. Using the MFArgs form is preferred since it's
                easier to verify in unit tests.

CommandRunner also implements RawConfig's file creation and cleanup logic.

Summary

Functions

Create a list of files

Remove a list of files

Run one or more commands

Functions

Link to this function

create_files(file_contents)

View Source
@spec create_files([VintageNet.Interface.RawConfig.file_contents()]) :: :ok

Create a list of files

Link to this function

remove_files(file_contents)

View Source
@spec remove_files([VintageNet.Interface.RawConfig.file_contents()]) :: :ok

Remove a list of files

Run one or more commands

See the module docs for documentation on commands.