From 1567bab16b1eeb8ddaf5a8cc09c71bdb0bedbda3 Mon Sep 17 00:00:00 2001 From: Weicao-CatilGrass <1992414357@qq.com> Date: Wed, 10 Dec 2025 10:49:52 +0800 Subject: 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 --- export.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'export.sh') 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 -- cgit