From e3829c54259adfe89a59ef2d25df7f8404dee8e9 Mon Sep 17 00:00:00 2001 From: Jonas Tobias Hopusch Date: Sun, 5 Sep 2021 20:26:37 +0200 Subject: [PATCH] Add basic compilation and execution POSIX scripts --- compile.sh | 3 +++ run.sh | 3 +++ 2 files changed, 6 insertions(+) create mode 100755 compile.sh create mode 100755 run.sh diff --git a/compile.sh b/compile.sh new file mode 100755 index 0000000..2ea97e4 --- /dev/null +++ b/compile.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +kotlinc app/src/main/kotlin/de/jotoho/waituntil/start.kt diff --git a/run.sh b/run.sh new file mode 100755 index 0000000..62dc8d1 --- /dev/null +++ b/run.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +kotlin de.jotoho.waituntil.StartKt $*