2023-01-03 13:28:28 +02:00
|
|
|
|
2023-01-03 12:14:11 +02:00
|
|
|
_gpgconv="gpg2 -d --quiet --yes --compress-algo=none --no-encrypt-to"
|
|
|
|
if [ "$(git config diff.gpg.textconv)" != "$_gpgconv" ]; then
|
|
|
|
git config diff.gpg.binary true
|
|
|
|
git config diff.gpg.textconv "$_gpgconv"
|
|
|
|
fi
|
|
|
|
|
|
|
|
export PASSWORD_STORE_DIR=$PWD/secrets
|
2023-01-03 13:28:28 +02:00
|
|
|
export REAL_PASS=$(which pass)
|
|
|
|
PATH_add tools
|