v1.5.1 增强程序稳定性

This commit is contained in:
robin
2026-03-22 17:37:40 +08:00
parent afbaaa869c
commit 17e182b413
652 changed files with 22949 additions and 34397 deletions

View File

@@ -22,6 +22,20 @@ echo "==============================="
echo " Building amzn2023 packages"
echo "==============================="
# --- check & regenerate protobuf ---
echo ""
echo "[0/3] Checking protobuf tools ..."
for cmd in protoc protoc-gen-go protoc-gen-go-grpc; do
if ! command -v "$cmd" &>/dev/null; then
echo "error: $cmd not found in PATH" >&2
exit 1
fi
done
echo " regenerating protobuf files ..."
cd "$ROOT/EdgeCommon/build"
./build.sh
echo " protobuf files regenerated"
# --- edge-node ---
echo ""
echo "[1/3] Building edge-node ..."