From 6b22f7b7694fce530f84ba94c65c057450cca626 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Fri, 20 Mar 2026 14:16:49 +0800 Subject: Run jvn after successful export in deploy scripts --- scripts/dev/deploy.sh | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'scripts/dev/deploy.sh') diff --git a/scripts/dev/deploy.sh b/scripts/dev/deploy.sh index b8e4640..9ade49d 100755 --- a/scripts/dev/deploy.sh +++ b/scripts/dev/deploy.sh @@ -56,6 +56,10 @@ if FORCE_BUILD=$(date +%s) cargo build --workspace --release --quiet > /dev/null if cargo run --manifest-path tools/build_helper/Cargo.toml --quiet --bin exporter release > /dev/null 2>&1; then # Copy compile_info.rs.template to compile_info.rs after successful export cp -f templates/compile_info.rs.template src/data/compile_info.rs + # Run jvn if available + if command -v jvn &> /dev/null; then + jvn -v --no-banner -c + fi fi fi -- cgit