This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
Repositories
Datasets
Forum
实训
竞赛
大数据
应用
Register
Sign In
OpenI
/
aiforge
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
128
Wiki
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
Browse Source
Added errcheck make task (
#242
)
master
Thomas Boerger
Lunny Xiao
8 years ago
parent
c0ca6644ad
commit
900a21008c
1 changed files
with
7 additions
and
0 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+7
-0
Makefile
+ 7
- 0
Makefile
View File
@@ -51,6 +51,13 @@ fmt:
vet:
vet:
go vet $(PACKAGES)
go vet $(PACKAGES)
.PHONY: errcheck
errcheck:
@which errcheck > /dev/null; if [ $$? -ne 0 ]; then \
go get -u github.com/kisielk/errcheck; \
fi
errcheck $(PACKAGES)
.PHONY: lint
.PHONY: lint
lint:
lint:
@which golint > /dev/null; if [ $$? -ne 0 ]; then \
@which golint > /dev/null; if [ $$? -ne 0 ]; then \
Write
Preview
Loading…
Cancel
Save