1
0
Fork 0
mirror of https://git.sr.ht/~goorzhel/turboprop synced 2024-12-15 17:50:52 +00:00
turboprop/Makefile
2023-11-26 01:23:19 -08:00

7 lines
212 B
Makefile

all:
nix build -vL --show-trace
.PHONY: secrets
secrets:
mkdir -p secrets
for i in $$(find services system -name "*sops.yaml"); do bin/decrypt_secret $$i > ./secrets/$$(tr / - <<< $$(dirname $$i)).yaml; done