Skip to content

Commit

Permalink
fix: fix application kinds enabled for exports
Browse files Browse the repository at this point in the history
  • Loading branch information
pviti committed Nov 29, 2023
1 parent 235e656 commit 7b19e8f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/hooks/prerun/application.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const applicationsCheck = {
triggers: ['integration', 'sales_chasnnel'],
token: ['integration'],
microstore: ['sales_channel'],
exports: ['integrtation'],
exports: ['integration'],
cleanups: ['integration'],
tags: ['integration', 'sales_channel'],
provisioning: ['user']
Expand Down
2 changes: 1 addition & 1 deletion src/patches/oclif/core/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export async function run(argv?: string[], options?: LoadOptions): Promise<unkno

// run init hook
const initHook = await config.runHook('init', {id, argv: argvSlice})
if (initHook.failures[0]) throw new CLIError(initHook.failures[0].error + ' CATCHATOOOOO')
if (initHook.failures[0]) throw new CLIError(initHook.failures[0].error)

// display version if applicable
if (versionAddition(argv, config)) {
Expand Down

0 comments on commit 7b19e8f

Please sign in to comment.