1
0
Fork 0
mirror of https://github.com/Mic92/sops-nix.git synced 2024-12-14 11:57:52 +00:00

Merge pull request #60 from jpotier/augment-shellhook

Keep the original shellHook if it is set, and run it after `sopsPGPHook`
This commit is contained in:
Jörg Thalheim 2021-01-08 05:23:56 +00:00 committed by GitHub
commit 4a7bf1c67c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,4 +27,6 @@ sopsPGPHook() {
if [ -z "${shellHook-}" ]; then
shellHook=sopsPGPHook
else
shellHook="sopsPGPHook;${shellHook}"
fi