Skip to content

Commit

Permalink
Consistently use pretty-print
Browse files Browse the repository at this point in the history
  • Loading branch information
Mackiovello committed Jul 20, 2018
1 parent 017d241 commit 37fb0bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/command/pack.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ pub fn pack(path: Option<PathBuf>, log: &Logger) -> result::Result<(), Error> {
info!(&log, "Packing up the npm package...");
let pkg_directory = find_pkg_directory(&crate_path).ok_or(Error::PkgNotFound {
message: format!(
"Unable to find the pkg directory at path {:?}, or in a child directory of {:?}",
"Unable to find the pkg directory at path {:#?}, or in a child directory of {:#?}",
&crate_path, &crate_path
),
})?;
Expand Down

0 comments on commit 37fb0bc

Please sign in to comment.