I have a windows batch
@echo off
setlocal
call kotlinc-jvm -cp "%~dp0\lib\commons-cli-1.3.1.jar" -script "%~dp0\RmMvnRepo.kts" %*
endlocal
If I pass "-h" option to the batch, kotlinc-jvm own's help will display. But I want my RmMvnRepo.kts to receive the option. How to do that?
EDIT: No need to answer this question anymore. I've found a bug in kotlinc related to this.