diff options
author | Unknwon <u@gogs.io> | 2017-02-16 11:47:54 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2017-02-16 11:47:54 -0500 |
commit | 3b49a99b6088f2b1e1ba7539b4a69930dfb6de16 (patch) | |
tree | 783612222733d55eaa00661d9579a1bc0eea3482 /Makefile | |
parent | f129e0ecb57634bc02972b7ff5a3175a829c0534 (diff) |
wiki: fix crash with blob name contains tab (#3916)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |