Skip to content

Commit

Permalink
Fix: delete Cairo 2 contracts when running make clean (lambdaclass#1579)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
odesenfans authored Jan 18, 2024
1 parent 4ea224a commit e0f37ad
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e0f37ad

Please sign in to comment.