From 20bcd4e2a2823efc52fb41ef1e73081a310906e1 Mon Sep 17 00:00:00 2001 From: Taylor Mullen Date: Tue, 10 Feb 2026 10:57:51 -0800 Subject: [PATCH] repro: fix unused variable build error --- packages/core/src/hooks/hookRunner.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/core/src/hooks/hookRunner.ts b/packages/core/src/hooks/hookRunner.ts index 22391b7ceb..ec521faf72 100644 --- a/packages/core/src/hooks/hookRunner.ts +++ b/packages/core/src/hooks/hookRunner.ts @@ -35,7 +35,6 @@ const DEFAULT_HOOK_TIMEOUT = 60000; * Exit code constants for hook execution */ const EXIT_CODE_SUCCESS = 0; -const EXIT_CODE_BLOCKING_ERROR = 2; const EXIT_CODE_NON_BLOCKING_ERROR = 1; /**