mirror of
https://git.sr.ht/~goorzhel/turboprop
synced 2024-12-14 11:37:37 +00:00
7 lines
212 B
Makefile
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
|