collab: Add automatic install of minio deb or rpm to script/bootstrap (#32968)
Release Notes: - N/A
This commit is contained in:
parent
c1d0d72db9
commit
fdd307cf7a
2 changed files with 32 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue