summaryrefslogtreecommitdiff
path: root/export.sh
diff options
context:
space:
mode:
authorWeicao-CatilGrass <1992414357@qq.com>2025-12-10 10:49:52 +0800
committerWeicao-CatilGrass <1992414357@qq.com>2025-12-10 10:49:52 +0800
commit1567bab16b1eeb8ddaf5a8cc09c71bdb0bedbda3 (patch)
treec5cc7c708207f3dae1b921c9d576d299a55be1b4 /export.sh
parent5fd3992ff8eea62967288c639985bfe60b9a171b (diff)
Add Windows installer and export scripts
- Add Inno Setup configuration for Windows installer - Add PowerShell scripts for installation and uninstallation - Create Windows-specific export script - Update existing export script to suppress build output - Include application icon for installer
Diffstat (limited to 'export.sh')
-rwxr-xr-xexport.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/export.sh b/export.sh
index 5428107..52215ba 100755
--- a/export.sh
+++ b/export.sh
@@ -1,7 +1,9 @@
#!/bin/bash
+# Require : Cargo (Rust)
+
# Build
-if cargo build --workspace --release; then
+if cargo build --workspace --release >/dev/null 2>&1; then
# Export
cargo run --manifest-path crates/build_helper/Cargo.toml --bin exporter
fi