From a2cab186316b4c46839cb5f9ad51b693edb194f6 Mon Sep 17 00:00:00 2001 From: wlodekm Date: Sun, 10 Nov 2024 21:03:01 +0200 Subject: add build script, possibly fix a bug ( v1.0.1 ) --- buildall.sh | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 buildall.sh (limited to 'buildall.sh') diff --git a/buildall.sh b/buildall.sh new file mode 100755 index 0000000..a1afb5d --- /dev/null +++ b/buildall.sh @@ -0,0 +1,22 @@ +echo "Welcome to the meower CL build script" + +echo "Building windows..." +deno task build-win + +echo "Building mac..." +deno task build-mac-x86 +deno task build-mac-arm + +echo "Building linux..." +deno task build-linux-x86 +deno task build-linux-arm + +echo "All platforms built, starting compression" + +mkdir build/compressed + +zip build/compressed/win.zip build/win.exe +zip build/compressed/mac.zip build/mac-x86 build/mac-arm + +tar -kczf build/compressed/linux.tar.gz build/linux-x86 build/linux-arm +echo "All builds compressed, build finished" \ No newline at end of file -- cgit 1.4.1-2-gfad0