Files
openai.openai-go/scripts/bootstrap
Stainless Bot c329601324 feat: publish
2024-08-01 00:02:01 +00:00

17 lines
283 B
Bash
Executable File

#!/usr/bin/env bash
set -e
cd "$(dirname "$0")/.."
if [ -f "Brewfile" ] && [ "$(uname -s)" = "Darwin" ]; then
brew bundle check >/dev/null 2>&1 || {
echo "==> Installing Homebrew dependencies…"
brew bundle
}
fi
echo "==> Installing Go dependencies…"
go mod tidy