WIP: 0.3.0 #5

Draft
shimun wants to merge 34 commits from 0.3.0 into master
Showing only changes of commit f53096dc5b - Show all commits

View File

@ -7,6 +7,7 @@ use std::fs::File;
use std::io::Read;
use std::path::PathBuf;
use std::process::Command;
use std::process::Stdio;
use std::str::FromStr;
#[derive(Debug, Clone, PartialEq)]
@ -156,6 +157,8 @@ impl PasswordHelper {
let password = Command::new("sh")
.arg("-c")
.arg(&password_helper)
.stdin(Stdio::inherit())
.stderr(Stdio::inherit())
.output()
.map_err(|e| Fido2LuksError::AskPassError {
cause: error::AskPassError::IO(e),