@ -192,7 +192,7 @@ impl Build {
/// Execute this `Build` command.
pub fn run(&mut self) -> Result<(), Error> {
let process_steps = Build::get_process_steps(&self.mode);
let process_steps = Build::get_process_steps(self.mode);
let mut step_counter = Step::new(process_steps.len());
@ -107,7 +107,7 @@ pub fn run_wasm_pack(command: Command) -> result::Result<(), Error> {
} => {
info!("Running publish command...");
info!("Path: {:?}", &path);
publish(target, path, access)
publish(&target, path, access)
}
Command::Login {
registry,