bullhorn / bullhorn-cli

CLI for Bullhorn and Bullhorn Extensions
MIT License
7 stars 8 forks source link

Wrong variable passed in extraxt-extension.js file Line:75 #44

Open kethansai opened 2 years ago

kethansai commented 2 years ago

We are using extension configuration starter kit this kit working on basis of bullhorn cli, using this kit we deploy all extensions to bullhorn rest API, in that kit there is one file extension.json, in that file for field interactions if multiple interactions in same entity we can use ** to deploy all interactions no need to specify every interaction path, same way in page Interactions should be do, but it's not working like that, we need to give specify path then only it was working, this is not required functionality. The mistake happened in the Bullhorn cli they passed wrong variable in extract-extension.js in Line no:75 let interactionConfig = require(path.join(process.cwd(), interaction)).default; This should be Like this let interactionConfig = require(path.join(process.cwd(), file)).default;

they passed wrong variable it's not interaction it should be file variable, we tested it by changing locally it worked fine.

Thank you Kethan Vemuri kethan.vemuri@manpowergroup.nl