mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-11-05 21:02:11 +08:00
20 lines
337 B
Bash
20 lines
337 B
Bash
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
OPENIM_ROOT=$(dirname "${BASH_SOURCE[0]}")/
|
|
source "${OPENIM_ROOT}/lib/util.sh"
|
|
source "${OPENIM_ROOT}/define/binaries.sh"
|
|
source "${OPENIM_ROOT}/lib/path.sh"
|
|
|
|
|
|
|
|
for binary in "${!binaries[@]}"; do
|
|
expected_count=${binaries[$binary]}
|
|
full_path=$(get_bin_full_path "$binary")
|
|
kill_binary "$full_path"
|
|
done
|
|
|
|
|