fix: resolve lint regression in plan parsing

This commit is contained in:
Affaan Mustafa
2026-03-12 15:35:12 -07:00
parent af318b8f04
commit c5b8a0783e

View File

@@ -275,7 +275,7 @@ function readPlanConfig(absoluteTarget) {
try {
config = JSON.parse(fs.readFileSync(absoluteTarget, 'utf8'));
} catch (error) {
} catch (_error) {
throw new Error(`Invalid orchestration plan JSON: ${absoluteTarget}`);
}