From 342a5156475c9934f7f157382af16eec369c1c47 Mon Sep 17 00:00:00 2001 From: Matt Johnston Date: Sun, 11 Jan 2026 11:49:49 +0800 Subject: [PATCH] Use target/ci for CI output Previously was using testing/target. A subdirectory of target/ is better for .gitignore and cleaning up. --- testing/ci.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/ci.sh b/testing/ci.sh index 22b540a1..162df28a 100755 --- a/testing/ci.sh +++ b/testing/ci.sh @@ -3,7 +3,7 @@ set -v set -e -export CARGO_TARGET_DIR=testing/target +export CARGO_TARGET_DIR=target/ci # Set OFFLINE=1 to avoid rustup. cargo might still run offline.