chore: remove debug

This commit is contained in:
Stefan Reimer 2022-04-14 21:19:22 +02:00
parent 9c21b6cd7c
commit 247ef1a388

View File

@ -24,7 +24,7 @@ age-unseal:
# If there are no diffs, just restore the agebox file from the index and delete the unaltered local unencrypted file
# If there are changes re-encrypt
age-seal:
@set -x;for f in $$(yq eval .file_ids[] .ageboxreg.yml); do \
@for f in $$(yq eval .file_ids[] .ageboxreg.yml); do \
[ -f $$f ] || continue; \
git restore $${f}.agebox; agebox cat $$f.agebox | diff - $$f && \
rm -f $$f || ( rm -f $$f.agebox; agebox encrypt $$f --public-keys .agekeys; ); done