Makefile: pass correct commands to sign.sh

This commit is contained in:
ryan 2024-03-31 22:52:09 -04:00
parent 7073754a60
commit 28b4ef177a
No known key found for this signature in database
GPG key ID: 8E401478A3FBEF72

View file

@ -46,7 +46,7 @@ digests.txt: $(shell find out -iname index.json | tr "\n" " ")
.PHONY: sign
sign:
./src/digests.sh | diff digests.txt /dev/stdin
cat digests.txt | xargs -n2 ./src/sign.sh $(REGISTRY_REMOTE)
cut -d' ' -f2 digests.txt | xargs -n1 ./src/sign.sh $(REGISTRY_REMOTE)
out/graph.svg: Makefile
$(MAKE) -Bnd | make2graph | dot -Tsvg -o graph.svg