forked from brl/citadel-tools
fix typo in sha256sum path
This commit is contained in:
parent
f02a9ab4c5
commit
79a52b7a46
@ -60,7 +60,7 @@ pub fn ensure_command_exists(cmd: &str) -> Result<()> {
|
|||||||
|
|
||||||
pub fn sha256<P: AsRef<Path>>(path: P) -> Result<String> {
|
pub fn sha256<P: AsRef<Path>>(path: P) -> Result<String> {
|
||||||
let path = path.as_ref();
|
let path = path.as_ref();
|
||||||
let output = cmd_with_output!("/usr/bin/256sum", "{}", path.display())
|
let output = cmd_with_output!("/usr/bin/sha256sum", "{}", path.display())
|
||||||
.context(format!("failed to calculate sha256 on {}", path.display()))?;
|
.context(format!("failed to calculate sha256 on {}", path.display()))?;
|
||||||
|
|
||||||
let v: Vec<&str> = output.split_whitespace().collect();
|
let v: Vec<&str> = output.split_whitespace().collect();
|
||||||
|
Loading…
Reference in New Issue
Block a user