Files
stainless-app[bot] 589792fe1d release: 0.5.0 (#60)
* chore(internal): more robust bootstrap script
* feat(api): api update
* feat(evaluators): add list evaluators (GET /api/v1/runs/rules)

---------

Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
2026-04-23 15:30:14 +02:00

25 lines
458 B
Bash
Executable File

#!/usr/bin/env bash
set -e
cd "$(dirname "$0")/.."
if [ -f "Brewfile" ] && [ "$(uname -s)" = "Darwin" ] && [ "${SKIP_BREW:-}" != "1" ] && [ -t 0 ]; then
brew bundle check >/dev/null 2>&1 || {
echo -n "==> Install Homebrew dependencies? (y/N): "
read -r response
case "$response" in
[yY][eE][sS]|[yY])
brew bundle
;;
*)
;;
esac
echo
}
fi
echo "==> Installing Go dependencies…"
go mod tidy -e