|
|
|
@ -176,15 +176,15 @@ impl Build { |
|
|
|
|
info!(&log, "Done in {}.", &duration); |
|
|
|
|
info!( |
|
|
|
|
&log, |
|
|
|
|
"Your wasm pkg is ready to publish at {:#}.", &self.out_dir |
|
|
|
|
"Your wasm pkg is ready to publish at {}.", self.out_dir.display() |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
PBAR.message(&format!("{} Done in {}", emoji::SPARKLE, &duration)); |
|
|
|
|
|
|
|
|
|
PBAR.message(&format!( |
|
|
|
|
"{} Your wasm pkg is ready to publish at {:#}.", |
|
|
|
|
"{} Your wasm pkg is ready to publish at {}.", |
|
|
|
|
emoji::PACKAGE, |
|
|
|
|
self.out_dir.canonicalize().unwrap_or(self.out_dir.clone()) |
|
|
|
|
self.out_dir.canonicalize().unwrap_or(self.out_dir.clone()).display() |
|
|
|
|
)); |
|
|
|
|
Ok(()) |
|
|
|
|
} |
|
|
|
|