Skip to content

Commit

Permalink
Fix build failure due to upstream debian docker image change
Browse files Browse the repository at this point in the history
Upstream disabled usrmerge

debuerreotype/docker-debian-artifacts#60
  • Loading branch information
brl committed Apr 24, 2019
1 parent 7d89c47 commit d4a3949
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion citadel-tool/src/mkimage/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ impl UpdateBuilder {

fn prepend_empty_block(&mut self) -> Result<()> {
let tmpfile = self.image().with_extension("tmp");
cmd!("/usr/bin/dd", "if={} of={} bs=4096 seek=1 conv=sparse", self.image().display(), tmpfile.display())?;
cmd!("/bin/dd", "if={} of={} bs=4096 seek=1 conv=sparse", self.image().display(), tmpfile.display())?;
fs::rename(tmpfile, self.image())?;
Ok(())
}
Expand Down

0 comments on commit d4a3949

Please sign in to comment.