fix: remove unused var in shell script

This commit is contained in:
Gabe Kangas
2025-12-24 09:18:26 -08:00
parent e62b4ea83d
commit fe1935ea0f
+1 -3
View File
@@ -14,8 +14,6 @@ function install_ffmpeg() {
exit 1
fi
OS="linux"
FFMPEG_VER="8.0"
FFMPEG_BUILD_VERSION="20251223233512"
FFMPEG_PATH="$(pwd)"
@@ -34,7 +32,7 @@ function install_ffmpeg() {
echo "Downloading ffmpeg v${FFMPEG_VER} release ${FFMPEG_BUILD_VERSION}"
rm -rf ffmpeg.tar.gz
curl -sL --fail https://github.com/owncast/ffmpeg-builds/releases/download/${FFMPEG_BUILD_VERSION}/ffmpeg${FFMPEG_VER}-amd64-static.tar.gz --output ffmpeg.tar.gz >/dev/null
curl -sL --fail "https://github.com/owncast/ffmpeg-builds/releases/download/${FFMPEG_BUILD_VERSION}/ffmpeg${FFMPEG_VER}-${OS}-amd64-static.tar.gz" --output ffmpeg.tar.gz >/dev/null
tar -xzf ffmpeg.tar.gz
rm -f ffmpeg.tar.gz
chmod +x ffmpeg