7 lines
196 B
Bash
7 lines
196 B
Bash
#!/bin/bash
|
|
# 兼容旧名:转 safe-deploy + 清理实验配置
|
|
set -e
|
|
DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
bash "$DIR/cleanup-lag-experiments.sh" 2>/dev/null || true
|
|
bash "$DIR/safe-deploy.sh"
|