GitHub Actions: 移除冗余的命令输出日志以简化脚本

This commit is contained in:
2026-01-29 19:05:27 +08:00
parent 1984e01785
commit cee6bc1027

View File

@@ -51,10 +51,8 @@ jobs:
echo "Pausing for $line ms..."
sleep "$(awk "BEGIN {print $line/1000}")" || true
elif [[ "$line" == curl* ]]; then
echo "Executing: $line"
eval "$line -w \"\\nHTTP Status: %{http_code}\\n\"" || true
else
echo "Executing: $line"
eval "$line" || true
fi
echo ""