Skip to content

Commit

Permalink
Fix Makefile issue
Browse files Browse the repository at this point in the history
  • Loading branch information
septract authored and cp526 committed Aug 17, 2024
1 parent 2b91b86 commit 0a21a65
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,15 @@ build/exercises.zip: $(EXERCISES)
##############################################################################
# Check that the examples all run correctly

CN_PATH?="cn verify"
CN_PATH?=cn verify

check-archive:
@echo Check archive examples
@$(MAKEFILE_DIR)/src/example-archive/check-all.sh $(CN_PATH)
@$(MAKEFILE_DIR)/src/example-archive/check-all.sh "$(CN_PATH)"

check-tutorial:
@echo Check tutorial examples
@$(MAKEFILE_DIR)/check.sh $(CN_PATH)
@$(MAKEFILE_DIR)/check.sh "$(CN_PATH)"

check: check-tutorial check-archive

Expand Down

0 comments on commit 0a21a65

Please sign in to comment.