docker: Fix bug in start.sh arguments.

This commit is contained in:
Harshavardhana 2016-04-04 11:30:18 -07:00
parent 9843aa1f7a
commit 7623e0f8e8
1 changed files with 1 additions and 1 deletions

View File

@ -6,5 +6,5 @@ if [ -z "$1" ]; then
echo "Usage: <export_dir>"
exit 1
else
/bin/mkdir -p "$2" && /minio server "$2"
/bin/mkdir -p "$1" && /minio server "$1"
fi