Currently, in order to run `.kts` files from gradl...
# gradle
c
Currently, in order to run
.kts
files from gradle, I have to do it through a task of
type: Exec
and pass the
kotlinc -script myscript.kts args
call to a shell script call, like
commandLine sh $scriptCall
or
Copy code
executable 'sh'
args $scriptCall
which feels very cumbersome and like jumping over a lot of fences