From 5faecda24e38b3b79f81089c5518754dff768383 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Tue, 21 Sep 2021 11:40:28 -0700 Subject: [PATCH] Fix spelling --- utils/utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/utils.go b/utils/utils.go index dea74b485..122ae400c 100644 --- a/utils/utils.go +++ b/utils/utils.go @@ -227,7 +227,7 @@ func ValidatedFfmpegPath(ffmpegPath string) string { cmd := exec.Command("which", "ffmpeg") out, err := cmd.CombinedOutput() if err != nil { - log.Fatalln("Unable to determine path to ffmpeg. Please make sure it is installed either globaly or a copy exists in the owncast directory.") + log.Fatalln("Unable to determine path to ffmpeg. Please make sure it is installed either globally or a copy exists in the owncast directory.") } path := strings.TrimSpace(string(out))