mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-30 15:35:33 +08:00
11 lines
85 B
Bash
Executable File
11 lines
85 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
if [ "$1" = 'start' ]; then
|
|
tail -f /dev/null
|
|
fi
|
|
|
|
exec "$@"
|
|
|