summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2025-12-10 13:05:43 +0800
committer魏曹先生 <1992414357@qq.com>2025-12-10 13:05:43 +0800
commitc4915ab825a7d3b17f21967c94eeeb470b4da43e (patch)
tree97466a4b3414ebe1591dc70ea70ab2d5051393c0
parent04010f6cffa34253d1883229c9f0d831b16e3367 (diff)
Remove silent build output from export script
-rwxr-xr-xexport.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/export.sh b/export.sh
index 52215ba..e508d79 100755
--- a/export.sh
+++ b/export.sh
@@ -3,7 +3,7 @@
# Require : Cargo (Rust)
# Build
-if cargo build --workspace --release >/dev/null 2>&1; then
+if cargo build --workspace --release; then
# Export
cargo run --manifest-path crates/build_helper/Cargo.toml --bin exporter
fi