Skip to content

Commit

Permalink
Use hammer emoji for install/reinstall stage (#6749)
Browse files Browse the repository at this point in the history
Switch from page_with_curl (馃搩) to hammer (馃敤) emoji for this stage.
  • Loading branch information
noahp authored and arcanis committed Dec 5, 2018
1 parent 011a634 commit fcf6298
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cli/commands/install.js
Expand Up @@ -682,7 +682,7 @@ export class Install {
curr,
total,
this.flags.force ? this.reporter.lang('rebuildingPackages') : this.reporter.lang('buildingFreshPackages'),
emoji.get('page_with_curl'),
emoji.get('hammer'),
);

if (this.flags.ignoreScripts) {
Expand Down
2 changes: 1 addition & 1 deletion src/cli/commands/remove.js
Expand Up @@ -87,7 +87,7 @@ export async function run(config: Config, reporter: Reporter, flags: Object, arg
}

// reinstall so we can get the updated lockfile
reporter.step(++step, totalSteps, reporter.lang('uninstallRegenerate'), emoji.get('page_with_curl'));
reporter.step(++step, totalSteps, reporter.lang('uninstallRegenerate'), emoji.get('hammer'));
const installFlags = {force: true, workspaceRootIsCwd: true, ...flags};
const reinstall = new Install(installFlags, config, new NoopReporter(), lockfile);
await reinstall.init();
Expand Down

0 comments on commit fcf6298

Please sign in to comment.