Skip to content

Commit

Permalink
fix: add selfcheck target to makefile (#428)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rebecca Graber authored Dec 18, 2023
1 parent a167aa0 commit 2915cb8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ Change Log
This file loosely adheres to the structure of https://keepachangelog.com/,
but in reStructuredText instead of Markdown.
2023-12-18
**********

Changed
=======
- Add selfcheck target to Makefile

2023-12-15
**********

Expand Down
3 changes: 3 additions & 0 deletions cookiecutter-xblock/{{cookiecutter.repo_name}}/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -83,3 +83,6 @@ install_transifex_client: ## Install the Transifex client
git diff -s --exit-code HEAD || { echo "Please commit changes first."; exit 1; }
curl -o- https://raw.githubusercontent.com/transifex/cli/master/install.sh | bash
git checkout -- LICENSE README.md ## overwritten by Transifex installer

selfcheck: ## check that the Makefile is well-formed
@echo "The Makefile is well-formed."

0 comments on commit 2915cb8

Please sign in to comment.