From 37027882855fa27ab37819eb90adbe4a4d4db1c5 Mon Sep 17 00:00:00 2001 From: Soispha Date: Wed, 1 Nov 2023 13:24:30 +0100 Subject: [PATCH] build(update.sh): Do not append to the `src/tests.rs` file --- update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update.sh b/update.sh index 614ca87..ecdd465 100755 --- a/update.sh +++ b/update.sh @@ -9,7 +9,7 @@ cd .. cd ./trinitry || (echo "No trinitry directory" && exit 1) cargo update && cargo upgrade -./update.sh >> ./src/tests.rs +./update.sh > ./src/tests.rs cd ..