aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2017-02-16 11:47:54 -0500
committerUnknwon <u@gogs.io>2017-02-16 11:47:54 -0500
commit3b49a99b6088f2b1e1ba7539b4a69930dfb6de16 (patch)
tree783612222733d55eaa00661d9579a1bc0eea3482 /Makefile
parentf129e0ecb57634bc02972b7ff5a3175a829c0534 (diff)
wiki: fix crash with blob name contains tab (#3916)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 9b04e69e..a71776ff 100644
--- a/Makefile
+++ b/Makefile
@@ -70,11 +70,11 @@ test:
go test -cover -race ./...
fixme:
- grep -rnw "FIXME" routers models modules
+ grep -rnw "FIXME" cmd routers models modules
todo:
- grep -rnw "TODO" routers models modules
+ grep -rnw "TODO" cmd routers models modules
# Legacy code should be remove by the time of release
legacy:
- grep -rnw "LEGACY" routers models modules
+ grep -rnw "LEGACY" cmd routers models modules