style(proto): ignore tmp-swagger-gen/**/*.swagger.json

This commit is contained in:
Prad Nukala
2025-10-21 12:04:29 -04:00
parent e3b492f3b9
commit 53a34171e8
45 changed files with 300 additions and 181 deletions
+7 -1
View File
@@ -120,8 +120,14 @@ retry() {
# Initialize environment
init_env() {
local skip_binary_check="${1:-false}"
require_cmd jq
ensure_binary
# Only check for binary if not skipping (allows Docker mode to be decided later)
if [[ "$skip_binary_check" != "true" ]]; then
ensure_binary
fi
# Set up cleanup trap
trap cleanup EXIT