From 6bc0b1c04f8e2535648bb791a0a803c15115d2bc Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sat, 3 Jan 2026 21:13:12 +0800 Subject: Rename export scripts to deploy scripts --- deploy.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 deploy.sh (limited to 'deploy.sh') diff --git a/deploy.sh b/deploy.sh new file mode 100755 index 0000000..ce1a7bd --- /dev/null +++ b/deploy.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +# Require : Cargo (Rust) + +# Build +if FORCE_BUILD=$(date +%s) cargo build --workspace --release; then + # Export + if cargo run --manifest-path crates/build_helper/Cargo.toml --bin exporter; then + # Delete compile_info.rs after successful export + rm -f src/data/compile_info.rs + fi +fi -- cgit