`kotlinc -script /some/script` -> exit code 0, ...
# getting-started
c
kotlinc -script /some/script
-> exit code 0,
sh -c 'kotlinc -script /some/script'
-> exit code 0, but if I call through gradle
commandLine 'sh', '-c', 'kotlinc -script /some/script'
-> exit code 127