Added build scripts

This commit is contained in:
Lauchmelder 2022-03-30 17:18:32 +02:00
parent ddd8cd2bf9
commit dde0bfa391
No known key found for this signature in database
GPG key ID: C2403C69D78F011D
2 changed files with 10 additions and 0 deletions

5
build.bat Normal file
View file

@ -0,0 +1,5 @@
@echo off
echo Creating zip file...
zip FuriKani manifest.json src/* res/icon*.png
echo Done!

5
build.sh Normal file
View file

@ -0,0 +1,5 @@
#!/bin/bash
echo Creating zip file...
zip FuriKani manifest.json src/* res/icon*.png
echo Done!