(command string, args []string, silent bool)
| 646 | } |
| 647 | |
| 648 | func runCommand(command string, args []string, silent bool) error { |
| 649 | cmd := exec.Command(command, args...) |
| 650 | if !silent { |
| 651 | cmd.Stdout = os.Stdout |
| 652 | cmd.Stderr = os.Stderr |
| 653 | } |
| 654 | return cmd.Run() |
| 655 | } |
| 656 | |
| 657 | func runCommandWithWait(command string, args []string, sleepSeconds int, silent bool) error { |
| 658 | for { |
no test coverage detected