mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-04 10:34:55 +02:00
32 lines
544 B
Go
32 lines
544 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package logs
|
|
|
|
import (
|
|
"log"
|
|
"os"
|
|
|
|
"github.com/aybabtme/humanlog"
|
|
"github.com/jesseduffield/lazygit/pkg/secureexec"
|
|
)
|
|
|
|
func TailLogsForPlatform(logFilePath string, opts *humanlog.HandlerOptions) {
|
|
cmd := secureexec.Command("tail", "-f", logFilePath)
|
|
|
|
stdout, _ := cmd.StdoutPipe()
|
|
if err := cmd.Start(); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
if err := humanlog.Scanner(stdout, os.Stdout, opts); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
if err := cmd.Wait(); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
os.Exit(0)
|
|
}
|