aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMistivia <i@mistivia.com>2025-12-20 17:43:16 +0800
committerMistivia <i@mistivia.com>2025-12-20 17:43:16 +0800
commite216dd7d35fee19dcfc3f4403e6fb03befd00fea (patch)
tree21279c8c34d46dd46dc64d1f22a1e54e3e9c5732
parent9d184d8052944a742236982735b3ab59ca3a8517 (diff)
add zip
-rw-r--r--build-windows.sh11
1 files changed, 6 insertions, 5 deletions
diff --git a/build-windows.sh b/build-windows.sh
index 26dd466..4684e48 100644
--- a/build-windows.sh
+++ b/build-windows.sh
@@ -1,9 +1,10 @@
#!/bin/bash
-rm -rf winpack
+rm -rf ezlive-windows-build
make
if [ $? -ne 0 ]; then exit $? ; fi
-mkdir winpack
-cp $(ldd ezlive | grep -v '/c/Windows' | awk '{ print $3 }') winpack/
-cp ezlive winpack/
-cp config.example.txt winpack/ \ No newline at end of file
+mkdir ezlive-windows-build
+cp $(ldd ezlive | grep -v '/c/Windows' | awk '{ print $3 }') ezlive-windows-build/
+cp ezlive ezlive-windows-build/
+cp config.example.txt ezlive-windows-build/
+zip ezlive-windows-build.zip ezlive-windows-build \ No newline at end of file