From adc0b754054d720e655e84ebeb4825f75ff1b1f3 Mon Sep 17 00:00:00 2001 From: Jonas Tobias Hopusch Date: Thu, 9 Sep 2021 23:09:03 +0200 Subject: [PATCH] Make kotlinc use all .kt files in root package --- compile.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compile.sh b/compile.sh index 94bbae6..b7de14a 100755 --- a/compile.sh +++ b/compile.sh @@ -1,3 +1,3 @@ #!/bin/sh -kotlinc app/src/main/kotlin/de/jotoho/waituntil/start.kt -jvm-target 16 -include-runtime -d waituntil.jar +kotlinc app/src/main/kotlin/de/jotoho/waituntil/*.kt -jvm-target 16 -include-runtime -d waituntil.jar