mirror of
				https://github.com/juanfont/headscale.git
				synced 2025-10-28 10:51:44 +01:00 
			
		
		
		
	value from CreatePreAuthKey and GetPreAuthKeys. Add tests for that bug, and the rest of the preauthkeys functionality. Fix path in `compress` Makefile target.
		
			
				
	
	
		
			25 lines
		
	
	
		
			414 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			414 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# Calculate version
 | 
						|
version = $(shell ./scripts/version-at-commit.sh)
 | 
						|
 | 
						|
build:
 | 
						|
	go build -ldflags "-s -w -X main.version=$(version)" cmd/headscale/headscale.go
 | 
						|
 | 
						|
dev: lint test build
 | 
						|
 | 
						|
test:
 | 
						|
	@go test -coverprofile=coverage.out ./...
 | 
						|
 | 
						|
coverprofile_func:
 | 
						|
	go tool cover -func=coverage.out
 | 
						|
 | 
						|
coverprofile_html:
 | 
						|
	go tool cover -html=coverage.out
 | 
						|
 | 
						|
lint:
 | 
						|
	golint
 | 
						|
	golangci-lint run
 | 
						|
 | 
						|
compress: build
 | 
						|
	upx --brute headscale
 | 
						|
 |