Skip to content

Commit

Permalink
fix: Fix broken legacy wizard (#811)
Browse files Browse the repository at this point in the history
* fix: Fix broken legacy wizard

There was an oversight in #799 which changed how `startWizard` was called accidentally breaking all legacy wizard runs.

* add changelog entry
  • Loading branch information
BYK authored Feb 21, 2025
1 parent 801fbe4 commit 06385db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
- ref: Remove obsolete deps (r2, lodash) ([#799](https://github.com/getsentry/sentry-wizard/pull/799))
- ref: No more dynamic requires ([#801](https://github.com/getsentry/sentry-wizard/pull/801))
- ref: Remove @sentry/cli as a dependency ([#802](https://github.com/getsentry/sentry-wizard/pull/802))
- fix: Fix broken legacy wizard ([#811](https://github.com/getsentry/sentry-wizard/pull/811))

## 3.42.1

Expand Down
3 changes: 1 addition & 2 deletions lib/Setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,5 @@ export async function run(argv: any): Promise<any> {
}
steps.push(Step.ConfigureProject, Step.Result);

// @ts-ignore
return startWizard(args, steps);
return startWizard(args, ...steps);
}

0 comments on commit 06385db

Please sign in to comment.