1
0
mirror of https://github.com/restic/restic.git synced 2025-03-14 22:10:52 +00:00
Tobias Klein bee09c1a0f test
2017-09-09 16:33:51 +02:00

14 lines
133 B
Makefile

.PHONY: all clean test restic
all: restic
restic:
go run build.go
clean:
rm -f restic
test:
go test ./cmd/... ./internal/...