14 lines
294 B
Makefile
14 lines
294 B
Makefile
|
default:
|
||
|
@just --list
|
||
|
|
||
|
install_git_filters:
|
||
|
@git config filter.ageEncrypt.clean "age -a -R key.pub"
|
||
|
@git config filter.ageEncrypt.smudge "age -d -i key.txt"
|
||
|
|
||
|
unlock_key:
|
||
|
@[ -f key.txt ] || age -d -o key.txt key.txt.age
|
||
|
|
||
|
setup:
|
||
|
just unlock_key
|
||
|
just install_git_filters
|