From 20a8096618c79273d2b257189a607be6b0b7f0e3 Mon Sep 17 00:00:00 2001 From: Yuanle Song Date: Sat, 5 Aug 2017 08:47:56 +0800 Subject: [PATCH] minor, "make todo" grep should not ignore case --- project.clj | 2 +- src/leiningen/new/python/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/project.clj b/project.clj index 8bd1438..1fd447a 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject python/lein-template "0.20.0" +(defproject python/lein-template "0.20.1" :description "lein template for a python project" :repositories [["snapshots" {:url "http://devserv.game.yy.com/nexus/content/repositories/snapshots" diff --git a/src/leiningen/new/python/Makefile b/src/leiningen/new/python/Makefile index 9dfcb8a..1f51c52 100644 --- a/src/leiningen/new/python/Makefile +++ b/src/leiningen/new/python/Makefile @@ -80,7 +80,7 @@ full-clean: find . -name "__pycache__" -type d -exec rm -rf {} \; || true find . -name "*.pyc" -type f -exec rm -rf {} \; || true todo: - @rgrep -I -n -i --exclude=Makefile --exclude=TAGS --exclude-dir=$(VENV) -E '(TODO|FIXME|XXX|not_implemented)' $(PYTHON_MODULES) + @rgrep -I -n --exclude=Makefile --exclude=TAGS --exclude-dir=$(VENV) -E '(TODO|FIXME|XXX|not_implemented)' $(PYTHON_MODULES) TAGS: etags -R --exclude=static $(PYTHON_MODULES) update-git-hooks: install-git-hooks-force -- GitLab