Skip to content

Commit 689b9c0

Browse files
feat(api): api update
1 parent e2ab3d3 commit 689b9c0

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
lines changed

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 107
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/datamini%2Fasktable-0242228e003ec6c562e80cd4bb3b5429237f2168f2379ebe5ef9d9c958552482.yml
3-
openapi_spec_hash: 772280fd4316ae74f76e3cba9f48e96d
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/datamini%2Fasktable-22dd7cc28ed94d978939dd45f82d2a12a8533c10aaac76675a61a9f5122b2d27.yml
3+
openapi_spec_hash: ffa1f34afbb7ae20289a23d41aabd3e5
44
config_hash: acdf4142177ed1932c2d82372693f811

scripts/bootstrap

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,18 @@ set -e
44

55
cd "$(dirname "$0")/.."
66

7-
if ! command -v rye >/dev/null 2>&1 && [ -f "Brewfile" ] && [ "$(uname -s)" = "Darwin" ]; then
7+
if [ -f "Brewfile" ] && [ "$(uname -s)" = "Darwin" ] && [ "$SKIP_BREW" != "1" ] && [ -t 0 ]; then
88
brew bundle check >/dev/null 2>&1 || {
9-
echo "==> Installing Homebrew dependencies…"
10-
brew bundle
9+
echo -n "==> Install Homebrew dependencies? (y/N): "
10+
read -r response
11+
case "$response" in
12+
[yY][eE][sS]|[yY])
13+
brew bundle
14+
;;
15+
*)
16+
;;
17+
esac
18+
echo
1119
}
1220
fi
1321

0 commit comments

Comments
 (0)