summaryrefslogtreecommitdiffstats
path: root/pkg/commands/exec_live_win.go
blob: 419eef5f2784428a90f33770eaa911ac4120ecbf (plain)
1
2
3
4
5
6
7
8
// +build windows

package commands

// RunCommandWithOutputLiveWrapper runs a command live but because of windows compatibility this command can't be ran there
func RunCommandWithOutputLiveWrapper(c *OSCommand, command string, output func(string) string) error {
	return c.RunCommand(command)
}