From f4ed5d2e9c386b9ea2389e85dc58f21d1c628330 Mon Sep 17 00:00:00 2001 From: Mike Donnalley Date: Fri, 30 Aug 2024 13:31:20 -0600 Subject: [PATCH] chore: clean up --- src/stage-tracker.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stage-tracker.ts b/src/stage-tracker.ts index a6a9c4e..f7095dd 100644 --- a/src/stage-tracker.ts +++ b/src/stage-tracker.ts @@ -44,7 +44,7 @@ export class StageTracker { continue } - // any pending stage before the current stage should be marked using opts.bypassStage + // any pending stage before the current stage should be marked using opts.bypassStatus if (stages.indexOf(stage) < stages.indexOf(nextStage) && this.map.get(stage) === 'pending') { this.set(stage, opts?.bypassStatus ?? 'completed') continue