From 4550089d7ccc9bcf1a96bc30f5c53302ed1b21a4 Mon Sep 17 00:00:00 2001 From: mattmcw Date: Tue, 30 Nov 2021 14:30:56 -0500 Subject: [PATCH] Build script (not really) --- build.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 build.sh diff --git a/build.sh b/build.sh new file mode 100644 index 0000000..6cb4f05 --- /dev/null +++ b/build.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +# Right now the app has to be exported from the IDE. +# + +mkdir -p releases +mkdir -p releases/linux +mkdir -p releases/windows + +mv application.linux* releases/linux/ +mv application.windows* releases/windows/ \ No newline at end of file