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

package commands

// RunCommandWithOutputLiveWrapper runs a command live but because of windows compatibility this command can't be ran there
// TODO: Remove this hack and replace it with a propper way to run commands live on windows
func RunCommandWithOutputLiveWrapper(c *OSCommand, command string, output func(string) string) error {
	return c.RunCommand(command)
}