Anyone know of a way to execute a bundle install s...
# suitescript
c
Anyone know of a way to execute a bundle install script outside of the actual bundle install/update/delete?
i guess more specifically execute one of the functions (ie After Install Function) - without writing another script to execute the method
e
Use case?
c
testing the script without the actual deploying of the bundle
e
ah sure
You need an entry point trigger to run code, so the short answer to the "without writing another script" portion of your question is "No". However, I'd recommend extracting the logic of the
afterInstall
into a custom module, then creating perhaps a Suitelet that invokes the method from the custom module
c
i figured that would be the case... was just hoping I was missing something. Thanks