Fix build errors after resolving merge conflicts

master
Mason Stallmo 6 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.
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,

Loading…
Cancel
Save