Skip to content

Commit

Permalink
fix(run): remove rogue words
Browse files Browse the repository at this point in the history
Fixes #72
  • Loading branch information
ianwremmel committed Apr 5, 2018
1 parent 5028b51 commit 072cf18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/handlers/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,14 @@ export namespace Run {
log(
argv as log.Options,
debug,
`${command} failed against ${packageName} packages`,
`${command} failed against ${packageName}`,
);
errors.push(err);
}
log(
argv as log.Options,
debug,
`Ran ${command} against ${packageName} packages`,
`Ran ${command} against ${packageName}`,
);
}
log(
Expand Down

0 comments on commit 072cf18

Please sign in to comment.