From dde0bfa3913f76b60d5d5e94929376a1664d9751 Mon Sep 17 00:00:00 2001 From: Lauchmelder Date: Wed, 30 Mar 2022 17:18:32 +0200 Subject: [PATCH] Added build scripts --- build.bat | 5 +++++ build.sh | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 build.bat create mode 100644 build.sh diff --git a/build.bat b/build.bat new file mode 100644 index 0000000..6526d8d --- /dev/null +++ b/build.bat @@ -0,0 +1,5 @@ +@echo off + +echo Creating zip file... +zip FuriKani manifest.json src/* res/icon*.png +echo Done! \ No newline at end of file diff --git a/build.sh b/build.sh new file mode 100644 index 0000000..aa6cae0 --- /dev/null +++ b/build.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +echo Creating zip file... +zip FuriKani manifest.json src/* res/icon*.png +echo Done! \ No newline at end of file