mirror of
https://github.com/vbatts/go-mtree.git
synced 2024-11-22 08:25:38 +00:00
Makefile: only make a single SUMS file, including sha1 and sha512
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
parent
b9356e6843
commit
020f2b9f5c
1 changed files with 5 additions and 1 deletions
6
Makefile
6
Makefile
|
@ -104,7 +104,11 @@ build.arches: ./bin
|
|||
a=$$(echo $$pair | cut -d , -f 2);\
|
||||
echo "Building $$p/$$a ...";\
|
||||
GOOS=$$p GOARCH=$$a go build -mod=vendor -o ./bin/gomtree.$$p.$$a $(BUILDPATH) ;\
|
||||
done
|
||||
done ;\
|
||||
cd bin ;\
|
||||
sha1sum gomtree.* > SUMS ;\
|
||||
sha512sum gomtree.* >> SUMS ;\
|
||||
cd -
|
||||
|
||||
clean:
|
||||
rm -rf $(BUILD) $(CLEAN_FILES)
|
||||
|
|
Loading…
Reference in a new issue