1# Copy textproto files in this directory from the source of truth.
2
3SRC=$(GOPATH)/src/github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore
4
5.PHONY: refresh-tests
6
7refresh-tests:
8	-rm genproto/*.pb.go
9	cp $(SRC)/genproto/*.pb.go genproto
10	-rm testdata/*.textproto
11	cp $(SRC)/testdata/*.textproto testdata
12	openssl dgst -sha1 $(SRC)/testdata/test-suite.binproto > testdata/VERSION
13
14