Changes fixes of macOS FFmpeg build script

This commit is contained in:
MartinEesmaa 2024-10-10 21:43:26 +11:00
parent b91b477b66
commit b20a7499e6
No known key found for this signature in database
GPG Key ID: FD65711850BEEE70
1 changed files with 2 additions and 1 deletions

View File

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