Skip to content

Commit

Permalink
refactor: print stack on failure to build integration in dev mode
Browse files Browse the repository at this point in the history
  • Loading branch information
ndhoule committed Oct 14, 2024
1 parent 0cfe6d8 commit 8bf65de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/build/src/install/missing.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const getIntegrationPackage = async function ({
throw new Error(res.stdout)
}
} catch (e) {
throw new Error(`Failed to build integration`)
throw new Error(`Failed to build integration. Error:\n\n${e.stack}`)
}

return resolve(integrationDir, '.ntli/site/static/packages/buildhooks.tgz')
Expand Down

0 comments on commit 8bf65de

Please sign in to comment.