mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	Makefile: Use hash over which (#1069)
`hash` is a much faster shell-builtin alternative to `which`.
This commit is contained in:
		
				
					committed by
					
						
						Thomas Boerger
					
				
			
			
				
	
			
			
			
						parent
						
							a30797425f
						
					
				
				
					commit
					ab462fb95f
				
			
							
								
								
									
										8
									
								
								Makefile
									
									
									
									
									
								
							
							
						
						
									
										8
									
								
								Makefile
									
									
									
									
									
								
							@@ -47,21 +47,21 @@ vet:
 | 
			
		||||
 | 
			
		||||
.PHONY: generate
 | 
			
		||||
generate:
 | 
			
		||||
	@which go-bindata > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
 | 
			
		||||
	@hash go-bindata > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
 | 
			
		||||
		go get -u github.com/jteeuwen/go-bindata/...; \
 | 
			
		||||
	fi
 | 
			
		||||
	go generate $(PACKAGES)
 | 
			
		||||
 | 
			
		||||
.PHONY: errcheck
 | 
			
		||||
errcheck:
 | 
			
		||||
	@which errcheck > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
 | 
			
		||||
	@hash errcheck > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
 | 
			
		||||
		go get -u github.com/kisielk/errcheck; \
 | 
			
		||||
	fi
 | 
			
		||||
	errcheck $(PACKAGES)
 | 
			
		||||
 | 
			
		||||
.PHONY: lint
 | 
			
		||||
lint:
 | 
			
		||||
	@which golint > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
 | 
			
		||||
	@hash golint > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
 | 
			
		||||
		go get -u github.com/golang/lint/golint; \
 | 
			
		||||
	fi
 | 
			
		||||
	for PKG in $(PACKAGES); do golint -set_exit_status $$PKG || exit 1; done;
 | 
			
		||||
@@ -105,7 +105,7 @@ release-dirs:
 | 
			
		||||
 | 
			
		||||
.PHONY: release-build
 | 
			
		||||
release-build:
 | 
			
		||||
	@which xgo > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
 | 
			
		||||
	@hash xgo > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
 | 
			
		||||
		go get -u github.com/karalabe/xgo; \
 | 
			
		||||
	fi
 | 
			
		||||
	xgo -dest $(DIST)/binaries -tags '$(TAGS)' -ldflags '-s -w $(LDFLAGS)' -targets '$(TARGETS)' -out $(EXECUTABLE)-$(VERSION) .
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user