From d94a4829a28aa2548f2efe31fa074ca68402eb09 Mon Sep 17 00:00:00 2001 From: Jan De Landtsheer Date: Sat, 16 Aug 2025 20:21:51 +0200 Subject: [PATCH] Add cleanup script and remove unused git version variables - Add comprehensive cleanup script (scripts/cleanup.sh) to remove build artifacts - Remove unused VERGEN_GIT_* environment variables from Rust build functions - Cleanup script preserves source code while removing outputs, cache, and temp files --- scripts/compile-components.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/compile-components.sh b/scripts/compile-components.sh index 19d6164..800cea9 100755 --- a/scripts/compile-components.sh +++ b/scripts/compile-components.sh @@ -142,7 +142,7 @@ build_mycelium_component() { . ~/.cargo/env # Build with musl target for static linking from myceliumd directory - cargo build --release --target x86_64-unknown-linux-musl + cargo build --release --target x86_64-unknown-linux-musl --features vendored-openssl # Debug: Check what was actually built echo " Checking build results..."