collab: Add automatic install of minio deb or rpm to script/bootstrap (#32968)

Release Notes:

- N/A
This commit is contained in:
Michael Sloan 2025-06-18 13:07:57 -06:00 committed by GitHub
parent c1d0d72db9
commit fdd307cf7a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 32 additions and 1 deletions

View file

@ -2,7 +2,11 @@
set -e
which minio > /dev/null || (echo "installing minio..."; brew install minio/stable/minio)
if ! which minio > /dev/null; then
echo "minio not found - run script/bootstrap to install it and do other setup"
exit 1
fi
mkdir -p .blob_store/the-extensions-bucket
mkdir -p .blob_store/zed-crash-reports