Skip to content

Commit

Permalink
Add pull make target
Browse files Browse the repository at this point in the history
  • Loading branch information
amake committed Aug 8, 2024
1 parent b07bdaa commit e6cee78
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,10 @@ prettify-staged:
if [ -z "$$(git diff --cached --name-only)" ]; then echo "No files left after formatting" 1>&2; exit 1; fi \
fi

.PHONY: pull
pull: ## Pull latest Docker images for tests
$(foreach _,$(test_versions),docker pull silex/emacs:$(_);)

.PHONY: clean
clean: ## Clean files
rm -f *.elc
Expand Down

0 comments on commit e6cee78

Please sign in to comment.