浏览代码

Don't prompt for password, if the email address already has a saved

password. This is useful if you copy your .password-store
directory from one computer to another.
pull/985/head
speedie 9 个月前
父节点
当前提交
11e54213dd
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. +3
    -3
      bin/mw

+ 3
- 3
bin/mw 查看文件

@@ -173,11 +173,11 @@ askinfo() {
[ -z "$passprefix" ] && passprefix=""
hostname="${fulladdr#*@}"
login="${login:-$fulladdr}"
if [ -n "${password+x}" ]; then
if [ -n "${password+x}" ] && [ ! -f "$PASSWORD_STORE_DIR/$passprefix$fulladdr.gpg" ]; then
insertpass
else
elif [ ! -f "$PASSWORD_STORE_DIR/$passprefix$fulladdr.gpg" ]; then
getpass
fi
fi
}

insertpass() {


正在加载...
取消
保存