Split out tools from main go.mod into tools/ (#4734)

* Split out tools from main go.mod into tools/ and create Makefile to support running them manually

* chore(ci): linter error

* fix(ci): fix the pre-commit and pre-push hooks
This commit is contained in:
Gabe Kangas
2026-01-13 16:17:35 -08:00
committed by GitHub
parent f8111bc772
commit d80a7246e1
11 changed files with 1753 additions and 1175 deletions
+2 -6
View File
@@ -5,12 +5,8 @@ set -e
function install_ffmpeg() {
# install a specific version of ffmpeg
if [[ "$OSTYPE" == "linux-"* ]]; then
OS="linux"
elif [[ "$OSTYPE" == "darwin"* ]]; then
OS="macos"
else
echo "Exiting!!!"
if [[ "$OSTYPE" != "linux-"* ]] && [[ "$OSTYPE" != "darwin"* ]]; then
echo "Unsupported platform: $OSTYPE"
exit 1
fi