commit a69f84a9fd12a29623a1bebec9d650b403a83d1d
parent 4f10f4f003a2c5b83c08e71c85c52efa3355942a
Author: Natasha Kerensikova <natgh@instinctive.eu>
Date: Sat, 22 Nov 2025 18:40:54 +0000
Unneeded subshell is removed from re-encrypt directory action
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/pashage.sh b/src/pashage.sh
@@ -990,7 +990,7 @@ do_reencrypt_dir() {
if ! [ -e "${ENTRY}/.age-recipients" ] \
|| [ "${DECISION}" = force ]
then
- ( do_reencrypt_dir "${ENTRY}" )
+ do_reencrypt_dir "${ENTRY}"
fi
elif [ "${ENTRY}" = "${ENTRY%.age}.age" ]; then
ENTRY="${ENTRY#"${PREFIX}"/}"