Scripts: Change scripts to generate portable jar-file and run JRE directly

This commit is contained in:
Jonas Tobias Hopusch 2021-09-05 20:40:27 +02:00
parent 3265e03281
commit a5814e2497
Failed to generate hash of commit
2 changed files with 2 additions and 2 deletions

View file

@ -1,3 +1,3 @@
#!/bin/sh
kotlinc app/src/main/kotlin/de/jotoho/waituntil/start.kt
kotlinc app/src/main/kotlin/de/jotoho/waituntil/start.kt -include-runtime -d waituntil.jar

2
run.sh
View file

@ -1,3 +1,3 @@
#!/bin/sh
kotlin de.jotoho.waituntil.StartKt $*
java -jar waituntil.jar $*