Skip to content

Commit

Permalink
Fix build errors after resolving merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
mstallmo committed Jan 17, 2019
1 parent d84aae3 commit 06bba23
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/command/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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());

Expand Down
2 changes: 1 addition & 1 deletion src/command/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 06bba23

Please sign in to comment.