Fix build errors after resolving merge conflicts

master
Mason Stallmo 7 years ago
parent d84aae3b64
commit 06bba236ac
  1. 2
      src/command/build.rs
  2. 2
      src/command/mod.rs

@ -192,7 +192,7 @@ impl Build {
/// Execute this `Build` command. /// Execute this `Build` command.
pub fn run(&mut self) -> Result<(), Error> { 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()); 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!("Running publish command...");
info!("Path: {:?}", &path); info!("Path: {:?}", &path);
publish(target, path, access) publish(&target, path, access)
} }
Command::Login { Command::Login {
registry, registry,

Loading…
Cancel
Save