commit f2598c0c12b611b02d7302a2c3d7f3d6d7ff20eb parent acb89a269a8d5c88c559bcaf42d022d7e4b1ba60 Author: Luke Smith <luke@lukesmith.xyz> Date: Tue, 16 Apr 2019 13:51:41 -0400 string fix Diffstat:
M | bin/getmuttpass | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bin/getmuttpass b/bin/getmuttpass @@ -1,5 +1,5 @@ #!/bin/bash GPG="gpg"; command -v gpg >/dev/null || GPG="gpg2" -pass=$(printf '%q' "$("$GPG" --decrypt --quiet ~/.local/share/muttwizard/$1.gpg)") +pass=$(printf '%q' "$("$GPG" --decrypt --quiet "$HOME/.local/share/muttwizard/$1.gpg")") echo "set smtp_pass=\"$pass\"" echo "set imap_pass=\"$pass\""