From e0f37add8aa4eaff82eae9d7215bb4bc19dbfef3 Mon Sep 17 00:00:00 2001 From: Olivier Desenfans Date: Thu, 18 Jan 2024 16:14:49 +0100 Subject: [PATCH] Fix: delete Cairo 2 contracts when running make clean (#1579) * Fix: delete Cairo 2 contracts when running make clean The .casm files in `cairo_programs/cairo-2-contracts` were not deleted in the `clean` target, resulting in errors when bisecting / testing older versions. * add sierra files --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index e39d995130..3c2889f478 100644 --- a/Makefile +++ b/Makefile @@ -319,6 +319,8 @@ clean: rm -f $(PRINT_TEST_DIR)/*.json rm -f $(CAIRO_1_CONTRACTS_TEST_DIR)/*.sierra rm -f $(CAIRO_1_CONTRACTS_TEST_DIR)/*.casm + rm -f $(CAIRO_2_CONTRACTS_TEST_DIR)/*.sierra + rm -f $(CAIRO_2_CONTRACTS_TEST_DIR)/*.casm rm -f $(TEST_PROOF_DIR)/*.json rm -f $(TEST_PROOF_DIR)/*.memory rm -f $(TEST_PROOF_DIR)/*.trace