From 5a0910ea79b3f219c64f922fc775636b2bfdf07c Mon Sep 17 00:00:00 2001 From: adamdottv <2363879+adamdottv@users.noreply.github.com> Date: Thu, 3 Jul 2025 11:49:15 -0500 Subject: chore: better local dev with stainless script --- packages/tui/sdk/scripts/bootstrap | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 packages/tui/sdk/scripts/bootstrap (limited to 'packages/tui/sdk/scripts/bootstrap') diff --git a/packages/tui/sdk/scripts/bootstrap b/packages/tui/sdk/scripts/bootstrap new file mode 100755 index 000000000..d6ac16540 --- /dev/null +++ b/packages/tui/sdk/scripts/bootstrap @@ -0,0 +1,16 @@ +#!/usr/bin/env bash + +set -e + +cd "$(dirname "$0")/.." + +if [ -f "Brewfile" ] && [ "$(uname -s)" = "Darwin" ] && [ "$SKIP_BREW" != "1" ]; then + brew bundle check >/dev/null 2>&1 || { + echo "==> Installing Homebrew dependencies…" + brew bundle + } +fi + +echo "==> Installing Go dependencies…" + +go mod tidy -e -- cgit v1.2.3