From b20a7499e6e8b1527cdd31cf875f449280149996 Mon Sep 17 00:00:00 2001 From: MartinEesmaa Date: Thu, 10 Oct 2024 21:43:26 +1100 Subject: [PATCH] Changes fixes of macOS FFmpeg build script --- BuildFFmpeg.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/BuildFFmpeg.sh b/BuildFFmpeg.sh index 3f24cd7..922a5fd 100644 --- a/BuildFFmpeg.sh +++ b/BuildFFmpeg.sh @@ -64,7 +64,7 @@ case "$(uname -s)" in Darwin*) OS="macOS" echo "Building FFmpeg VVCEasy macOS version..." - echo "Checking for downloading brew requirement packages..." + echo "Checking for Brew packages requirements..." if ! command -v brew &> /dev/null; then echo "Homebrew is not installed. Please install Homebrew and try again." @@ -72,6 +72,7 @@ case "$(uname -s)" in else brew install ffmpeg cmake nasm opus meson autoconf automake wget ninja fi + ;; *) echo "Only for Windows, macOS & Linux are only supported" exit 1