mirror of
https://github.com/minio/docs.git
synced 2025-07-25 21:22:11 +03:00
13 lines
173 B
Bash
Executable File
13 lines
173 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
export PATH=${PATH}:${HOME}/.local/bin
|
|
export GITDIR=main
|
|
|
|
|
|
make SYNC_SDK=TRUE mindocs
|
|
|
|
mkdir -p minio/
|
|
cp -vr build/${GITDIR}/mindocs/html/* ./minio/
|