Fix spelling

This commit is contained in:
Gabe Kangas 2021-09-21 11:40:28 -07:00
parent 296f5d13f5
commit 5faecda24e

View file

@ -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))