mirror of
https://github.com/minio/minio.git
synced 2024-12-26 15:15:55 -05:00
11 lines
198 B
Bash
Executable File
11 lines
198 B
Bash
Executable File
#!/bin/bash
|
|
|
|
## Fix this check when we arrive at XL.
|
|
if [ -z "$1" ]; then
|
|
echo "Invalid arguments"
|
|
echo "Usage: <export_dir>"
|
|
exit 1
|
|
else
|
|
/bin/mkdir -p "$1" && /minio server "$1"
|
|
fi
|