12 lines
167 B
Bash
Executable File
12 lines
167 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
|
|
echo "[05] 清理环境..."
|
|
|
|
bash "$SCRIPT_DIR/common/stop-all.sh" || true
|
|
|
|
echo "[05] 清理完成"
|
|
|