Skip to content

v0.1.1

Compare
Choose a tag to compare
@vladimirvivien vladimirvivien released this 02 Oct 04:24
4d4f3dd

v0.1.1

This release focuses on code stability and tidiness. It also introduces the exec/CommandBuilder type which is used to execute batches of commands using several execution strategy including:

  • Execution in serial
  • Execution concurrently
  • Exit on error
  • Continue on error

Example

cmds := exec.Commands("git commit --signoff", "history", "man time", "man man")
cmds.WithPolicy(exec.CmdOnErrContinue).Run()