mirror of https://github.com/milvus-io/milvus.git
9 lines
83 B
Bash
9 lines
83 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
if [ "$1" = 'start' ]; then
|
||
|
tail -f /dev/null
|
||
|
fi
|
||
|
|
||
|
exec "$@"
|