1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-03-05 15:15:49 +02:00

pkg: Fix typo

This commit is contained in:
KimMachineGune 2019-01-16 14:56:47 +09:00 committed by Jesse Duffield
parent c722ea5afc
commit 3e24069722

View File

@ -3,7 +3,7 @@
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
// TODO: Remove this hack and replace it with a proper way to run commands live on windows
func RunCommandWithOutputLiveWrapper(c *OSCommand, command string, output func(string) string) error {
return c.RunCommand(command)
}