Skip to content

Commit

Permalink
Don't include directory names in shasums
Browse files Browse the repository at this point in the history
Right now we just run `shasum` on an absolute path but right now the shasum
files only include filenames, so let's use `current_dir` and just the file name
to only have the file name emitted.
  • Loading branch information
alexcrichton committed Feb 8, 2017
1 parent 10f6a5c commit 67574cc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/tools/build-manifest/src/main.rs
Expand Up @@ -350,7 +350,8 @@ impl Builder {
fn hash(&self, path: &Path) -> String {
let sha = t!(Command::new("shasum")
.arg("-a").arg("256")
.arg(path)
.arg(path.file_name().unwrap())
.current_dir(path.parent().unwrap())
.output());
assert!(sha.status.success());

Expand Down

0 comments on commit 67574cc

Please sign in to comment.