From bd887ce988b0974153c56b76aa8790e9aa54dc17 Mon Sep 17 00:00:00 2001 From: Vicente Reyes Date: Sun, 11 Nov 2018 18:09:13 -0300 Subject: [PATCH] allow password_fill to work without final newline --- misc/userscripts/password_fill | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/userscripts/password_fill b/misc/userscripts/password_fill index a61a42c68..2e4f01b66 100755 --- a/misc/userscripts/password_fill +++ b/misc/userscripts/password_fill @@ -269,7 +269,7 @@ pass_backend() { break fi fi - done < <($GPG "${GPG_OPTS[@]}" -d "$path" ) + done < <($GPG "${GPG_OPTS[@]}" -d "$path" | awk 1 ) } } # =======================================================