bugfix: Let Mac users specify encryption directly (#546)

This commit is contained in:
Ana Hobden 2023-06-30 12:43:02 -07:00 committed by GitHub
parent 3586457624
commit 9c915b3f6a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -108,7 +108,9 @@ impl Planner for Macos {
},
};
let encrypt = if self.encrypt == None {
let encrypt = match self.encrypt {
Some(choice) => choice,
None => {
let output = Command::new("/usr/bin/fdesetup")
.arg("isactive")
.stdout(std::process::Stdio::null())
@ -125,8 +127,7 @@ impl Planner for Macos {
} else {
false
}
} else {
false
},
};
Ok(vec![